We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf0c993 commit 1461144Copy full SHA for 1461144
src/lib/parser-json-cov.cc
@@ -74,7 +74,7 @@ bool CovTreeDecoder::readNode(Defect *def)
74
75
evt.fileName = valueOf<std::string>(evtNode, "filePathname");
76
evt.line = valueOf<int> (evtNode, "lineNumber");
77
- // TODO: read column?
+ evt.column = valueOf<int> (evtNode, "columnNumber");
78
evt.event = valueOf<std::string>(evtNode, "eventTag");
79
evt.msg = valueOf<std::string>(evtNode, "eventDescription");
80
0 commit comments