File tree 5 files changed +10
-10
lines changed
5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ bool CweNameLookup::handleLine(const TStringList &fields)
53
53
54
54
// parse CWE number
55
55
const std::string &cweId = fields[/* CWE */ 0 ];
56
- const int cwe = parse_int (cweId, -1 );
56
+ const int cwe = parseInt (cweId, -1 );
57
57
if (cwe < 0 ) {
58
58
// we use "unmapped" for findings without any CWE assigned
59
59
// as discussed in https://github.com/csutils/csdiff/pull/61
Original file line number Diff line number Diff line change 25
25
#include < boost/algorithm/string/replace.hpp>
26
26
#include < boost/lexical_cast.hpp>
27
27
28
- int parse_int (const std::string &str, const int fallback)
28
+ int parseInt (const std::string &str, const int fallback)
29
29
{
30
30
try {
31
31
return boost::lexical_cast<int >(str);
Original file line number Diff line number Diff line change 38
38
#define RE_EVENT_SIGMA " (?:Sigma (?:main )?event)"
39
39
#define RE_EVENT RE_EVENT_GCC " |" RE_EVENT_PROSPECTOR " |" RE_EVENT_SIGMA
40
40
41
- int parse_int (const std::string &, int fallback = 0 );
41
+ int parseInt (const std::string &, int fallback = 0 );
42
42
43
43
class ImpliedAttrDigger {
44
44
public:
Original file line number Diff line number Diff line change @@ -190,10 +190,10 @@ EToken ErrFileLexer::readNext()
190
190
evt_.msg = sm[/* msg */ 5 ];
191
191
192
192
// parse line number
193
- evt_.line = parse_int (sm[/* line */ 2 ]);
193
+ evt_.line = parseInt (sm[/* line */ 2 ]);
194
194
195
195
// parse column number
196
- evt_.column = parse_int (sm[/* col */ 3 ]);
196
+ evt_.column = parseInt (sm[/* col */ 3 ]);
197
197
198
198
return T_EVENT;
199
199
}
@@ -479,7 +479,7 @@ void AnnotHandler::handleDef(Defect *pDef)
479
479
{
480
480
boost::smatch sm;
481
481
if (boost::regex_match (pDef->annotation , sm, reCweAnnot_)) {
482
- pDef->cwe = parse_int (sm[/* cwe */ 1 ]);
482
+ pDef->cwe = parseInt (sm[/* cwe */ 1 ]);
483
483
pDef->annotation .clear ();
484
484
}
485
485
}
Original file line number Diff line number Diff line change @@ -178,10 +178,10 @@ EToken Tokenizer::readNext(DefEvent *pEvt)
178
178
pEvt->fileName = sm[" file" ];
179
179
180
180
// parse line number
181
- pEvt->line = parse_int (sm[" line" ]);
181
+ pEvt->line = parseInt (sm[" line" ]);
182
182
183
183
// parse column number
184
- pEvt->column = parse_int (sm[" col" ]);
184
+ pEvt->column = parseInt (sm[" col" ]);
185
185
186
186
return tok;
187
187
}
@@ -467,7 +467,7 @@ bool BasicGccParser::digCppcheckEvt(Defect *pDef)
467
467
keyEvt.event += " ]" ;
468
468
469
469
// store CWE if available
470
- pDef->cwe = parse_int (sm[/* cwe */ 2 ]);
470
+ pDef->cwe = parseInt (sm[/* cwe */ 2 ]);
471
471
472
472
// this assignment invalidates sm!
473
473
keyEvt.msg = sm[/* msg */ 3 ];
@@ -628,7 +628,7 @@ void GccPostProcessor::Private::transGccAnal(Defect *pDef) const
628
628
if (!boost::regex_match (keyEvt.msg , sm, this ->reGccAnalCwe ))
629
629
return ;
630
630
631
- pDef->cwe = parse_int (sm[/* cwe */ 2 ]);
631
+ pDef->cwe = parseInt (sm[/* cwe */ 2 ]);
632
632
// this invalidates sm
633
633
keyEvt.msg = sm[/* msg */ 1 ];
634
634
}
You can’t perform that action at this time.
0 commit comments