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