You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Minor bug concerning class CmdFunction final : public CmdBase
Coverity scan says line 100:
CID 281693 (#1 of 1): Uninitialized scalar field (UNINIT_CTOR)
2. uninit_member: Non-static class member value is not initialized in this constructor nor in any functions that it calls.
and line 118:
1. member_decl: Class member declaration for value.
but seems to me this member variable is set but never used.
The text was updated successfully, but these errors were encountered:
How do you want I fix it ? I do not know well this library and therefore I'm not sure to clearly understand what the code does. They are several solutions:
Is print_value() is supposed to return stringify(value); instead of return "" ? And what initial value shall I set to value ?
Minor bug concerning
class CmdFunction final : public CmdBase
Coverity scan says line 100:
and line 118:
but seems to me this member variable is set but never used.
The text was updated successfully, but these errors were encountered: