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