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 aeebbfa commit f7958b8Copy full SHA for f7958b8
1 file changed
lib/checksizeof.cpp
@@ -87,7 +87,7 @@ void CheckSizeofImpl::checkSizeofForArrayParameter()
87
}
88
89
const Variable *var = varTok->variable();
90
- if (var && var->isArray() && var->isArgument() && !var->isReference()&& !(var->isStlType() && var->getTypeName() == "std::array"))
+ if (var && var->isArray() && var->isArgument() && !var->isReference() && !(var->isStlType() && var->getTypeName() == "std::array"))
91
sizeofForArrayParameterError(tok);
92
93
0 commit comments