Skip to content

Commit 5c21c01

Browse files
authored
Update rust/ql/src/queries/summary/Stats.qll
1 parent 62d0cf7 commit 5c21c01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/ql/src/queries/summary/Stats.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ int getLinesOfCode() { result = sum(File f | f.fromSource() | f.getNumberOfLines
3535
* Gets a count of the total number of lines of code from the source code directory in the database.
3636
*/
3737
int getLinesOfUserCode() {
38-
result = sum(File f | f.fromSource() and exists(f.getRelativePath()) | f.getNumberOfLinesOfCode())
38+
result = sum(ExtractedFile f | exists(f.getRelativePath()) | f.getNumberOfLinesOfCode())
3939
}
4040

4141
/**

0 commit comments

Comments
 (0)