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

Unified Diff: include/llvm/Bitcode/NaCl/NaClObjDumpStream.h

Issue 1151093004: Changes from 3.7 merge to files not in upstream (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: Created 5 years, 7 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
Index: include/llvm/Bitcode/NaCl/NaClObjDumpStream.h
diff --git a/include/llvm/Bitcode/NaCl/NaClObjDumpStream.h b/include/llvm/Bitcode/NaCl/NaClObjDumpStream.h
index fa8575f7951d2d0b5a9ae71dd92889fa43aae1de..fd119ca66510eedf693aea2b018eed3004eed9f9 100644
--- a/include/llvm/Bitcode/NaCl/NaClObjDumpStream.h
+++ b/include/llvm/Bitcode/NaCl/NaClObjDumpStream.h
@@ -240,8 +240,8 @@ public:
/// into the base stream. Finally, it calls virtual method MyApply
/// to do the actions of the directive.
class Directive {
- Directive(const Directive&) LLVM_DELETED_FUNCTION;
- void operator=(const Directive&) LLVM_DELETED_FUNCTION;
+ Directive(const Directive&) = delete;
+ void operator=(const Directive&) = delete;
public:
/// Creates a directive for the given stream.
explicit Directive(TextFormatter *Formatter)
@@ -759,8 +759,8 @@ private:
/// RecordWidth). On the other hand, we assume that the assembly is
/// formatted by the caller (i.e. owner of this object).
class ObjDumpStream {
- ObjDumpStream(const ObjDumpStream&) LLVM_DELETED_FUNCTION;
- void operator=(const ObjDumpStream&) LLVM_DELETED_FUNCTION;
+ ObjDumpStream(const ObjDumpStream&) = delete;
+ void operator=(const ObjDumpStream&) = delete;
public:
/// The default number of error messages that will be printed before
/// execution is stopped due to too many errors.

Powered by Google App Engine
This is Rietveld 408576698