summaryrefslogtreecommitdiff
path: root/overrides/webrtc/base/basictypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'overrides/webrtc/base/basictypes.h')
-rw-r--r--overrides/webrtc/base/basictypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/overrides/webrtc/base/basictypes.h b/overrides/webrtc/base/basictypes.h
index cd93d06e..c7cec5e7 100644
--- a/overrides/webrtc/base/basictypes.h
+++ b/overrides/webrtc/base/basictypes.h
@@ -95,7 +95,7 @@ const int kForever = -1;
#else // !WEBRTC_WIN
#define alignof(t) __alignof__(t)
#endif // !WEBRTC_WIN
-#define IS_ALIGNED(p, a) (0==(reinterpret_cast<uintptr_t>(p) & ((a)-1)))
+#define RTC_IS_ALIGNED(p, a) (0==(reinterpret_cast<uintptr_t>(p) & ((a)-1)))
#define ALIGNP(p, t) \
(reinterpret_cast<uint8*>(((reinterpret_cast<uintptr_t>(p) + \
((t)-1)) & ~((t)-1))))