aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/Watchdog.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Support/Watchdog.h')
-rw-r--r--include/llvm/Support/Watchdog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/Watchdog.h b/include/llvm/Support/Watchdog.h
index b58496b..01e1d92 100644
--- a/include/llvm/Support/Watchdog.h
+++ b/include/llvm/Support/Watchdog.h
@@ -29,8 +29,8 @@ namespace llvm {
~Watchdog();
private:
// Noncopyable.
- Watchdog(const Watchdog &other) LLVM_DELETED_FUNCTION;
- Watchdog &operator=(const Watchdog &other) LLVM_DELETED_FUNCTION;
+ Watchdog(const Watchdog &other) = delete;
+ Watchdog &operator=(const Watchdog &other) = delete;
};
}
}