mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-28 20:41:07 +00:00
Replace default destructors by {} destructors
Hope this fixes the buildbots for now. llvm-svn: 248823
This commit is contained in:
parent
4dddcc64d3
commit
81f005617e
@ -161,7 +161,7 @@ public:
|
||||
void finalizeSCoP(Scop &S);
|
||||
|
||||
/// @brief An empty destructor
|
||||
virtual ~BlockGenerator() = default;
|
||||
virtual ~BlockGenerator(){};
|
||||
|
||||
BlockGenerator(const BlockGenerator &) = default;
|
||||
|
||||
@ -687,7 +687,7 @@ public:
|
||||
/// @param BlockGen A generator for basic blocks.
|
||||
RegionGenerator(BlockGenerator &BlockGen) : BlockGenerator(BlockGen) {}
|
||||
|
||||
virtual ~RegionGenerator() = default;
|
||||
virtual ~RegionGenerator(){};
|
||||
|
||||
/// @brief Copy the region statement @p Stmt.
|
||||
///
|
||||
|
Loading…
x
Reference in New Issue
Block a user