Skip to content

Commit df1fda0

Browse files
committed
lint: use std::move() where appropriate
Suggested by Coverity. Closes: #154
1 parent 6089062 commit df1fda0

7 files changed

+8
-8
lines changed

src/cshtml.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ int main(int argc, char *argv[])
170170
// initialize CWE names lookup
171171
CweNameLookup cweNames;
172172
if (!fnCweNames.empty()) {
173-
InStream strCweNames(fnCweNames);
173+
InStream strCweNames(std::move(fnCweNames));
174174
cweNames.parse(strCweNames);
175175
writer.setCweNameLookup(&cweNames);
176176
}

src/lib/parser-common.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ void ImpliedAttrDigger::inferToolFromChecker(
9797
// we use COMPILER_WARNING for "gcc" due to historical reasons
9898
tool = "gcc";
9999

100-
pDef->tool = tool;
100+
pDef->tool = std::move(tool);
101101
}
102102
else
103103
// no tool matched --> assume coverity

src/lib/parser-cov.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ EToken ErrFileLexer::readNext()
180180
}
181181

182182
if (!boost::regex_match(line, sm, reEvent_)) {
183-
evt_.msg = line;
183+
evt_.msg = std::move(line);
184184
return T_UNKNOWN;
185185
}
186186

src/lib/parser-json-sarif.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,14 @@ void SarifTreeDecoder::readScanProps(
121121

122122
if (!version.empty())
123123
// record tool version of Snyk Code
124-
(*pDst)["analyzer-version-snyk-code"] = version;
124+
(*pDst)["analyzer-version-snyk-code"] = std::move(version);
125125
}
126126
else if (name == "gitleaks") {
127127
// gitleaks
128128
d->singleChecker = "GITLEAKS_WARNING";
129129

130130
if (!version.empty())
131-
(*pDst)["analyzer-version-gitleaks"] = version;
131+
(*pDst)["analyzer-version-gitleaks"] = std::move(version);
132132
}
133133
else if (boost::starts_with(name, "GNU C")) {
134134
// GCC

src/lib/parser-xml-valgrind.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ void ValgrindTreeDecoder::readRoot(const pt::ptree *root)
123123
// create a note event in the defect prototype
124124
d->defPrototype.events.push_back(DefEvent("note"));
125125
DefEvent &noteEvt = d->defPrototype.events.back();
126-
noteEvt.fileName = exe;
126+
noteEvt.fileName = std::move(exe);
127127

128128
// record PID and command-line args
129129
std::ostringstream str;

src/lib/writer-html.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ void HtmlWriterCore::writeHeaderOnce(
271271
title = titleFallback_;
272272

273273
// initialize a HTML document
274-
HtmlLib::initHtml(str_, title);
274+
HtmlLib::initHtml(str_, std::move(title));
275275
if (!plainTextUrl.empty())
276276
HtmlLib::writeLink(str_, plainTextUrl, "[Show plain-text results]");
277277

src/lib/writer-json-sarif.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -412,5 +412,5 @@ void SarifTreeEncoder::writeTo(std::ostream &str)
412412
root["runs"] = array{std::move(run0)};
413413

414414
// encode as JSON
415-
jsonPrettyPrint(str, root);
415+
jsonPrettyPrint(str, std::move(root));
416416
}

0 commit comments

Comments
 (0)