diff options
Diffstat (limited to 'libc/src/string/string_utils.h')
| -rw-r--r-- | libc/src/string/string_utils.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/string/string_utils.h b/libc/src/string/string_utils.h index 17efc125ea63..78381e46e480 100644 --- a/libc/src/string/string_utils.h +++ b/libc/src/string/string_utils.h @@ -15,12 +15,13 @@ #define LLVM_LIBC_SRC_STRING_STRING_UTILS_H #include "src/__support/CPP/bitset.h" +#include "src/__support/macros/config.h" #include "src/__support/macros/optimization.h" // LIBC_UNLIKELY #include "src/string/memory_utils/inline_bzero.h" #include "src/string/memory_utils/inline_memcpy.h" #include <stddef.h> // For size_t -namespace LIBC_NAMESPACE { +namespace LIBC_NAMESPACE_DECL { namespace internal { template <typename Word> LIBC_INLINE constexpr Word repeat_byte(Word byte) { @@ -246,6 +247,6 @@ LIBC_INLINE constexpr static char *strrchr_implementation(const char *src, } } // namespace internal -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL #endif // LLVM_LIBC_SRC_STRING_STRING_UTILS_H |
