Merge pull request #3319 from jbj/Declaration-not-abstract

C++: Make `Declaration` not abstract
This commit is contained in:
Mathias Vorreiter Pedersen
2020-04-23 08:36:18 +02:00
committed by GitHub

View File

@@ -25,7 +25,7 @@ private import semmle.code.cpp.internal.QualifiedName as Q
* `DeclarationEntry`, because they always have a unique source location.
* `EnumConstant` and `FriendDecl` are both examples of this.
*/
abstract class Declaration extends Locatable, @declaration {
class Declaration extends Locatable, @declaration {
/**
* Gets the innermost namespace which contains this declaration.
*