Skip to content

Commit 8f410b4

Browse files
[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`.
1 parent 471e59b commit 8f410b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/shared/sign.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
namespace LIBC_NAMESPACE_DECL {
1616
namespace shared {
1717

18-
using LIBC_NAMESPACE_DECL::Sign;
18+
using LIBC_NAMESPACE::Sign;
1919

2020
} // namespace shared
2121
} // namespace LIBC_NAMESPACE_DECL

0 commit comments

Comments
 (0)