Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(307)

Unified Diff: src/IceGlobalContext.h

Issue 619983002: Subzero: Remove LLVM_DELETED_FUNCTION. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceConverter.h ('k') | src/IceGlobalContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceGlobalContext.h
diff --git a/src/IceGlobalContext.h b/src/IceGlobalContext.h
index 8dca08f6209a1f9baae426f09ad85ae89834cd75..0ffff1c3d9013979f8f18cc0cacd0b05bd7d919b 100644
--- a/src/IceGlobalContext.h
+++ b/src/IceGlobalContext.h
@@ -173,8 +173,8 @@ private:
CodeStats StatsFunction;
CodeStats StatsCumulative;
std::unique_ptr<class TimerStack> Timers;
- GlobalContext(const GlobalContext &) LLVM_DELETED_FUNCTION;
- GlobalContext &operator=(const GlobalContext &) LLVM_DELETED_FUNCTION;
+ GlobalContext(const GlobalContext &) = delete;
+ GlobalContext &operator=(const GlobalContext &) = delete;
// Private helpers for mangleName()
typedef llvm::SmallVector<char, 32> ManglerVector;
@@ -185,8 +185,8 @@ private:
// pushes a marker, and the destructor pops it. This is for
// convenient timing of regions of code.
class TimerMarker {
- TimerMarker(const TimerMarker &) LLVM_DELETED_FUNCTION;
- TimerMarker &operator=(const TimerMarker &) LLVM_DELETED_FUNCTION;
+ TimerMarker(const TimerMarker &) = delete;
+ TimerMarker &operator=(const TimerMarker &) = delete;
public:
TimerMarker(TimerIdT ID, GlobalContext *Ctx)
« no previous file with comments | « src/IceConverter.h ('k') | src/IceGlobalContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698