diff options
| author | Petr Hosek <phosek@google.com> | 2024-07-12 09:28:41 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-12 09:28:41 -0700 |
| commit | 5ff3ff33ff930e4ec49da7910612d8a41eb068cb (patch) | |
| tree | ffb876db6deb2dfd4c6c0c11ddf692db75082f7f /libc/src/ctype/ispunct.cpp | |
| parent | dd866040aeb2703debacc141f60429ea0f567146 (diff) | |
[libc] Migrate to using LIBC_NAMESPACE_DECL for namespace declaration (#98597)
This is a part of #97655.
Diffstat (limited to 'libc/src/ctype/ispunct.cpp')
| -rw-r--r-- | libc/src/ctype/ispunct.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/ctype/ispunct.cpp b/libc/src/ctype/ispunct.cpp index d355c19c426c..c1906e3acdd8 100644 --- a/libc/src/ctype/ispunct.cpp +++ b/libc/src/ctype/ispunct.cpp @@ -10,8 +10,9 @@ #include "src/__support/common.h" #include "src/__support/ctype_utils.h" +#include "src/__support/macros/config.h" -namespace LIBC_NAMESPACE { +namespace LIBC_NAMESPACE_DECL { // TODO: Currently restricted to default locale. // These should be extended using locale information. @@ -20,4 +21,4 @@ LLVM_LIBC_FUNCTION(int, ispunct, (int c)) { return static_cast<int>(!internal::isalnum(ch) && internal::isgraph(ch)); } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
