Replace default destructors by {} destructors

Hope this fixes the buildbots for now.

llvm-svn: 248823
This commit is contained in:
Tobias Grosser 2015-09-29 19:52:09 +00:00
parent 4dddcc64d3
commit 81f005617e

View File

@ -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.
///