We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85e6ad9 commit 10929b7Copy full SHA for 10929b7
1 file changed
lib/token.cpp
@@ -2632,6 +2632,8 @@ const ValueFlow::Value* Token::getContainerSizeValue(const MathLib::bigint val)
2632
2633
TokenImpl::~TokenImpl()
2634
{
2635
+ // cppcheck-suppress-begin [noCopyConstructor, noOperatorEq]
2636
+
2637
delete mMacroName;
2638
delete mOriginalName;
2639
delete mValueType;
@@ -2649,6 +2651,8 @@ TokenImpl::~TokenImpl()
2649
2651
mCppcheckAttributes = mCppcheckAttributes->next;
2650
2652
delete c;
2653
}
2654
2655
+ // cppcheck-suppress-end [noCopyConstructor, noOperatorEq]
2656
2657
2658
void TokenImpl::setCppcheckAttribute(TokenImpl::CppcheckAttributes::Type type, MathLib::bigint value)
0 commit comments