aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Serialization/GlobalModuleIndex.h
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2013-02-18 23:11:09 +0000
committerDavid Blaikie <dblaikie@gmail.com>2013-02-18 23:11:09 +0000
commit9ef9b8540a608a93efaaae1d26d94e8087c30b55 (patch)
tree65cc842504af091c58e041adb7c61aa31599cd39 /include/clang/Serialization/GlobalModuleIndex.h
parent39e6ab4be93d9c5e729a578ddd9d415cd2d49872 (diff)
Use LLVM_DELETED_FUNCTION rather than '// do not implement' comments.
Also removes some redundant DNI comments on function declarations already using the macro. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175465 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Serialization/GlobalModuleIndex.h')
-rw-r--r--include/clang/Serialization/GlobalModuleIndex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Serialization/GlobalModuleIndex.h b/include/clang/Serialization/GlobalModuleIndex.h
index 20d995e0ad..ec8ad353e0 100644
--- a/include/clang/Serialization/GlobalModuleIndex.h
+++ b/include/clang/Serialization/GlobalModuleIndex.h
@@ -94,8 +94,8 @@ class GlobalModuleIndex {
explicit GlobalModuleIndex(FileManager &FileMgr, llvm::MemoryBuffer *Buffer,
llvm::BitstreamCursor Cursor);
- GlobalModuleIndex(const GlobalModuleIndex &); // DO NOT IMPLEMENT
- GlobalModuleIndex &operator=(const GlobalModuleIndex &); // DO NOT IMPLEMENT
+ GlobalModuleIndex(const GlobalModuleIndex &) LLVM_DELETED_FUNCTION;
+ GlobalModuleIndex &operator=(const GlobalModuleIndex &) LLVM_DELETED_FUNCTION;
public:
~GlobalModuleIndex();