Skip to content

Commit 448bd2b

Browse files
committed
C++: Make Declaration not abstract
It looks like this change will stop `SignedOverflowCheck.ql` from needlessly re-evaluating several cached stages.
1 parent 9fae953 commit 448bd2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/ql/src/semmle/code/cpp/Declaration.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ private import semmle.code.cpp.internal.QualifiedName as Q
2525
* `DeclarationEntry`, because they always have a unique source location.
2626
* `EnumConstant` and `FriendDecl` are both examples of this.
2727
*/
28-
abstract class Declaration extends Locatable, @declaration {
28+
class Declaration extends Locatable, @declaration {
2929
/**
3030
* Gets the innermost namespace which contains this declaration.
3131
*

0 commit comments

Comments
 (0)