Skip to content

Commit a85afb1

Browse files
committed
Build fix
1 parent 5b507e8 commit a85afb1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/vsg/io/JSONParser.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ namespace vsg
8282
warnings.push_back(vsg::make_string("Parsing error at [", line, ":", column, "], pos = ", pos, " [ ", lineEnclosingPosition(pos), " ]. ", std::forward<Args>(args)...));
8383
}
8484

85-
static inline bool white_space(char c) const
85+
static inline bool white_space(char c)
8686
{
8787
return (c == ' ' || c == '\t' || c == '\r' || c == '\n');
8888
}

0 commit comments

Comments
 (0)