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
fout << "These cause the analysis of the file to end prematurely." << '\n';
168
168
} else {
169
-
fout << "No critical errors encountered." << std::endl;
169
+
fout << "No critical errors encountered." << '\n';
170
170
// TODO: mention "information" and "debug" as source for indications of bailouts
171
171
// TODO: still rephrase this - this message does not provides confidence in the results
172
172
// TODO: document what a bailout is and why it is done - mention it in the upcoming security/tuning guide
173
173
// TODO: make bailouts a separate group - need to differentiate between user bailouts (missing data like configuration/includes) and internal bailouts (e.g. limitations of ValueFlow)
174
-
fout << "Note: There might still have been non-critical bailouts which might lead to false negatives." << std::endl;
174
+
fout << "Note: There might still have been non-critical bailouts which might lead to false negatives." << '\n';
175
175
}
176
176
177
-
fout << std::endl << std::endl;
178
-
fout << "Open source checkers" << std::endl;
179
-
fout << "--------------------" << std::endl;
177
+
fout << '\n' << '\n';
178
+
fout << "Open source checkers" << '\n';
179
+
fout << "--------------------" << '\n';
180
180
181
181
std::size_t maxCheckerSize = 0;
182
182
for (constauto& checkReq: checkers::allCheckers) {
0 commit comments