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 4e1c48e commit 4a44de6Copy full SHA for 4a44de6
libcxx/src/experimental/tzdb.cpp
@@ -107,7 +107,7 @@ static void __matches(istream& __input, char __expected) {
107
108
static void __matches(istream& __input, string_view __expected) {
109
for (auto __c : __expected) {
110
- _LIBCPP_ASSERT_INTERNAL(!std::isalpha(__expected) || std::islower(__c), "lowercase strings only here!");
+ _LIBCPP_ASSERT_INTERNAL(!std::isalpha(__c) || std::islower(__c), "lowercase strings only here!");
111
char __actual = __input.get();
112
if (std::tolower(__actual) != __c)
113
std::__throw_runtime_error(
0 commit comments