Skip to content

Commit e3651b6

Browse files
committed
use default constructor
1 parent 7b2d577 commit e3651b6

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
@@ -8442,7 +8442,7 @@ namespace {
84428442
class PointerParamInfo {
84438443
public:
84448444
virtual void print(clang::ASTContext &ctx, llvm::raw_ostream &out) const = 0;
8445-
virtual ~PointerParamInfo() {}
8445+
virtual ~PointerParamInfo() = default;
84468446
};
84478447

84488448
class CountedByParam : public PointerParamInfo {

0 commit comments

Comments
 (0)