diff options
author | Leandro Lacerda <leandrolcampos@yahoo.com.br> | 2025-07-22 22:17:09 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-22 20:17:09 -0500 |
commit | 8f410b491e55f3b91587da926a7a6fee99722df3 (patch) | |
tree | 152395c8f565768b7d09261684fe0680d3e4a7b0 /libc | |
parent | 471e59b858b1d2ee844cb527522e60ed03a1a1dc (diff) | |
download | llvm-8f410b491e55f3b91587da926a7a6fee99722df3.zip llvm-8f410b491e55f3b91587da926a7a6fee99722df3.tar.gz llvm-8f410b491e55f3b91587da926a7a6fee99722df3.tar.bz2 |
[libc] Fix incorrect macro usage in shared/sign.h (#150140)
This patch corrects the `using`-declaration in `libc/shared/sign.h`.
The previous change (#150083) incorrectly used the `LIBC_NAMESPACE_DECL`
macro. This is corrected to use `LIBC_NAMESPACE`.
Diffstat (limited to 'libc')
-rw-r--r-- | libc/shared/sign.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/shared/sign.h b/libc/shared/sign.h index faa8648..2029b52 100644 --- a/libc/shared/sign.h +++ b/libc/shared/sign.h @@ -15,7 +15,7 @@ namespace LIBC_NAMESPACE_DECL { namespace shared { -using LIBC_NAMESPACE_DECL::Sign; +using LIBC_NAMESPACE::Sign; } // namespace shared } // namespace LIBC_NAMESPACE_DECL |