diff options
| author | David Blaikie <dblaikie@gmail.com> | 2015-09-29 00:12:50 +0000 |
|---|---|---|
| committer | David Blaikie <dblaikie@gmail.com> | 2015-09-29 00:12:50 +0000 |
| commit | 6163f67ad0a5d449eb93f31321f9a8d54e9f7aa8 (patch) | |
| tree | 0303f46ae29e11de98533f48fd027c6f3a1637d5 | |
| parent | 8e9ea2a4395ab601e4e671b4663587cef2e291fd (diff) | |
| download | bcm5719-llvm-6163f67ad0a5d449eb93f31321f9a8d54e9f7aa8.tar.gz bcm5719-llvm-6163f67ad0a5d449eb93f31321f9a8d54e9f7aa8.zip | |
Remove unnecessary default dtor. The base dtor is already virtual and the derived dtor adds nothing.
llvm-svn: 248765
| -rw-r--r-- | polly/include/polly/CodeGen/BlockGenerators.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/polly/include/polly/CodeGen/BlockGenerators.h b/polly/include/polly/CodeGen/BlockGenerators.h index 9d8e4393fc9..6601024668c 100644 --- a/polly/include/polly/CodeGen/BlockGenerators.h +++ b/polly/include/polly/CodeGen/BlockGenerators.h @@ -698,9 +698,6 @@ public: void copyStmt(ScopStmt &Stmt, LoopToScevMapT <S, __isl_keep isl_id_to_ast_expr *IdToAstExp); - /// @brief An empty destructor - virtual ~RegionGenerator(){}; - private: /// @brief A map from old to new blocks in the region. DenseMap<BasicBlock *, BasicBlock *> BlockMap; |

