Index: webrtc/common_audio/signal_processing/include/spl_inl.h |
diff --git a/webrtc/common_audio/signal_processing/include/spl_inl.h b/webrtc/common_audio/signal_processing/include/spl_inl.h |
index 370834e694096ca0e76f388d4c115aa2e275f702..90098caaaa2596b5d1e3ba22fa6e99e9c03f2675 100644 |
--- a/webrtc/common_audio/signal_processing/include/spl_inl.h |
+++ b/webrtc/common_audio/signal_processing/include/spl_inl.h |
@@ -12,8 +12,8 @@ |
// This header file includes the inline functions in |
// the fix point signal processing library. |
-#ifndef WEBRTC_COMMON_AUDIO_SIGNAL_PROCESSING_INCLUDE_SPL_INL_H_ |
-#define WEBRTC_COMMON_AUDIO_SIGNAL_PROCESSING_INCLUDE_SPL_INL_H_ |
+#ifndef WEBRTC_SPL_SPL_INL_H_ |
+#define WEBRTC_SPL_SPL_INL_H_ |
#include "webrtc/system_wrappers/include/compile_assert_c.h" |
@@ -56,7 +56,7 @@ |
// Returns the number of leading zero bits in the argument. |
static __inline int WebRtcSpl_CountLeadingZeros64(uint64_t n) { |
#ifdef __GNUC__ |
- COMPILE_ASSERT(sizeof(unsigned long long) == sizeof(uint64_t)); // NOLINT |
+ COMPILE_ASSERT(sizeof(unsigned long long) == sizeof(uint64_t)); |
return n == 0 ? 64 : __builtin_clzll(n); |
#else |
return WebRtcSpl_CountLeadingZeros64_NotBuiltin(n); |
@@ -151,4 +151,4 @@ |
#endif // WEBRTC_ARCH_ARM_V7 |
-#endif // WEBRTC_COMMON_AUDIO_SIGNAL_PROCESSING_INCLUDE_SPL_INL_H_ |
+#endif // WEBRTC_SPL_SPL_INL_H_ |