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/test/UnitTest/CmakeFilePath.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/test/UnitTest/CmakeFilePath.cpp')
| -rw-r--r-- | libc/test/UnitTest/CmakeFilePath.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libc/test/UnitTest/CmakeFilePath.cpp b/libc/test/UnitTest/CmakeFilePath.cpp index 2a7d1c39d320..b7bc5a8573dc 100644 --- a/libc/test/UnitTest/CmakeFilePath.cpp +++ b/libc/test/UnitTest/CmakeFilePath.cpp @@ -10,11 +10,14 @@ #include "src/__support/CPP/string.h" #include "src/__support/c_string.h" +#include "src/__support/macros/config.h" -namespace LIBC_NAMESPACE::testing { +namespace LIBC_NAMESPACE_DECL { +namespace testing { CString libc_make_test_file_path_func(const char *file_name) { return cpp::string(file_name); } -} // namespace LIBC_NAMESPACE::testing +} // namespace testing +} // namespace LIBC_NAMESPACE_DECL |
