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.
2 parents 39669cb + d55c1ed commit b57c7f7Copy full SHA for b57c7f7
src/attributes.cpp
@@ -1621,7 +1621,7 @@ namespace attributes {
1621
// Look for the signature termination ({ or ; not inside quotes)
1622
// on this line and then subsequent lines if necessary
1623
std::string signature;
1624
- for (size_t i = lineNumber; i<lines_.size(); i++) {
+ for (size_t i = lineNumber; i < (size_t)lines_.size(); i++) {
1625
std::string line;
1626
line = lines_[i];
1627
bool insideQuotes = false;
0 commit comments