aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/IR/LegacyPassManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/IR/LegacyPassManager.h')
-rw-r--r--include/llvm/IR/LegacyPassManager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/IR/LegacyPassManager.h b/include/llvm/IR/LegacyPassManager.h
index 6c04e9d..5257a0e 100644
--- a/include/llvm/IR/LegacyPassManager.h
+++ b/include/llvm/IR/LegacyPassManager.h
@@ -50,7 +50,7 @@ class PassManager : public PassManagerBase {
public:
PassManager();
- ~PassManager();
+ ~PassManager() override;
void add(Pass *P) override;
@@ -70,7 +70,7 @@ public:
/// FunctionPassManager ctor - This initializes the pass manager. It needs,
/// but does not take ownership of, the specified Module.
explicit FunctionPassManager(Module *M);
- ~FunctionPassManager();
+ ~FunctionPassManager() override;
void add(Pass *P) override;