We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 906cbbb commit 421fc04Copy full SHA for 421fc04
libc/test/src/unistd/getopt_test.cpp
@@ -79,7 +79,7 @@ struct LlvmLibcGetoptTest : public LIBC_NAMESPACE::testing::Test {
79
80
// This is safe because getopt doesn't currently permute argv like GNU's getopt
81
// does so this just helps silence warnings.
82
-char *operator"" _c(const char *c, size_t) { return const_cast<char *>(c); }
+char *operator""_c(const char *c, size_t) { return const_cast<char *>(c); }
83
84
TEST_F(LlvmLibcGetoptTest, NoMatch) {
85
array<char *, 3> argv{"prog"_c, "arg1"_c, nullptr};
0 commit comments