Skip to content

Commit dbae338

Browse files
Remove redundant declaration (#323)
1 parent 2f44b77 commit dbae338

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

simplecpp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ namespace simplecpp {
135135
bool isOneOf(const char ops[]) const;
136136
bool startsWithOneOf(const char c[]) const;
137137
bool endsWithOneOf(const char c[]) const;
138-
static bool SIMPLECPP_LIB isNumberLike(const std::string& str) {
138+
static bool isNumberLike(const std::string& str) {
139139
return std::isdigit(static_cast<unsigned char>(str[0])) ||
140140
(str.size() > 1U && (str[0] == '-' || str[0] == '+') && std::isdigit(static_cast<unsigned char>(str[1])));
141141
}

0 commit comments

Comments
 (0)