Skip to content

Commit cfecc9c

Browse files
authored
Merge pull request github#3319 from jbj/Declaration-not-abstract
C++: Make `Declaration` not abstract
2 parents cf91147 + 448bd2b commit cfecc9c

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)