Skip to content

Commit

Permalink
fix casing in variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
EricSesterhennX41 committed Dec 18, 2023
1 parent aa7629d commit 17fd2b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/cppcheckdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ class Value:
intvalue integer value
tokvalue token value
floatvalue float value
movedValue
movedvalue
uninit
containerSize container size
bufferSize buffer size
Expand Down Expand Up @@ -900,7 +900,7 @@ def setId(self, IdMap):
self.symbolic = IdMap.get(self._symbolicId)

def __repr__(self):
attrs = ["intvalue", "tokvalue", "floatvalue", "movedValue", "uninit",
attrs = ["intvalue", "tokvalue", "floatvalue", "movedvalue", "uninit",
"bufferSize", "containerSize", "condition", "valueKind"]
return "{}({})".format(
"Value",
Expand Down

0 comments on commit 17fd2b4

Please sign in to comment.