Skip to content

Commit 6117969

Browse files
committed
use default constructor
1 parent 6d275ed commit 6117969

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ClangImporter/ImportDecl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8513,7 +8513,7 @@ namespace {
85138513
class PointerParamInfo {
85148514
public:
85158515
virtual void print(clang::ASTContext &ctx, llvm::raw_ostream &out) const = 0;
8516-
virtual ~PointerParamInfo() {}
8516+
virtual ~PointerParamInfo() = default;
85178517
};
85188518

85198519
class CountedByParam : public PointerParamInfo {

0 commit comments

Comments
 (0)