summaryrefslogtreecommitdiff
path: root/include/flang/Frontend/VerifyDiagnosticConsumer.h
diff options
context:
space:
mode:
authorMark Doffman <mark.doffman@codethink.co.uk>2015-03-03 15:38:04 +0000
committerMark Doffman <mark.doffman@codethink.co.uk>2015-03-03 15:38:04 +0000
commit2d993f4c126517c037c671df71bf0d65fb92be8b (patch)
treed49a3958882e66da945c9a628aa143bb79eb361b /include/flang/Frontend/VerifyDiagnosticConsumer.h
parentac65ee5df6b67cc3af1491efe5a157bf9fffca17 (diff)
downloadflang-2d993f4c126517c037c671df71bf0d65fb92be8b.tar.gz
Update to work with llvm a40d4ae47869167fc8
Changes for StringMap, Passes, and LLVM_DELETED function APIs.
Diffstat (limited to 'include/flang/Frontend/VerifyDiagnosticConsumer.h')
-rw-r--r--include/flang/Frontend/VerifyDiagnosticConsumer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/flang/Frontend/VerifyDiagnosticConsumer.h b/include/flang/Frontend/VerifyDiagnosticConsumer.h
index ec062870d2..32d0cef416 100644
--- a/include/flang/Frontend/VerifyDiagnosticConsumer.h
+++ b/include/flang/Frontend/VerifyDiagnosticConsumer.h
@@ -171,8 +171,8 @@ public:
}
private:
- Directive(const Directive &) LLVM_DELETED_FUNCTION;
- void operator=(const Directive &) LLVM_DELETED_FUNCTION;
+ Directive(const Directive &) = delete;
+ void operator=(const Directive &) = delete;
};
typedef std::vector<Directive*> DirectiveList;