Skip to content

Commit 8d3a45c

Browse files
committed
Apply formatting
1 parent 42512c7 commit 8d3a45c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cpp/ql/src/Metrics/Internal/IncludeResolutionStatus.ql

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ predicate undefined_token_error(CompilerError e) {
4040
e.hasTag("not_a_class_template")
4141
}
4242

43-
select count(CannotOpenFileError e) as failed_includes,
44-
count(Include i) as successful_includes,
43+
select count(CannotOpenFileError e) as failed_includes, count(Include i) as successful_includes,
4544
count(Include i) + count(CannotOpenFileError e) as total_includes,
4645
count(CompilerError e | local_compiler_error(e) and undefined_token_error(e)) as local_undefined_token_errors,
4746
count(CompilerError e | local_compiler_error(e)) as local_errors

0 commit comments

Comments
 (0)