diff options
author | Craig Topper <craig.topper@gmail.com> | 2014-03-02 09:09:27 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2014-03-02 09:09:27 +0000 |
commit | 73156025e021f98786009a06c794f8b8f369b7a3 (patch) | |
tree | b20fd2bf0ddc155002a79f68ef6859b54f9338b7 /llvm/lib/Support/DAGDeltaAlgorithm.cpp | |
parent | e55d9bf508471c97e7bad9e5f63e4fe103cb3042 (diff) | |
download | bcm5719-llvm-73156025e021f98786009a06c794f8b8f369b7a3.tar.gz bcm5719-llvm-73156025e021f98786009a06c794f8b8f369b7a3.zip |
Switch all uses of LLVM_OVERRIDE to just use 'override' directly.
llvm-svn: 202621
Diffstat (limited to 'llvm/lib/Support/DAGDeltaAlgorithm.cpp')
-rw-r--r-- | llvm/lib/Support/DAGDeltaAlgorithm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/DAGDeltaAlgorithm.cpp b/llvm/lib/Support/DAGDeltaAlgorithm.cpp index 34e82cf4416..7b81a113514 100644 --- a/llvm/lib/Support/DAGDeltaAlgorithm.cpp +++ b/llvm/lib/Support/DAGDeltaAlgorithm.cpp @@ -163,11 +163,11 @@ class DeltaActiveSetHelper : public DeltaAlgorithm { protected: /// UpdatedSearchState - Callback used when the search state changes. virtual void UpdatedSearchState(const changeset_ty &Changes, - const changesetlist_ty &Sets) LLVM_OVERRIDE { + const changesetlist_ty &Sets) override { DDAI.UpdatedSearchState(Changes, Sets, Required); } - virtual bool ExecuteOneTest(const changeset_ty &S) LLVM_OVERRIDE { + virtual bool ExecuteOneTest(const changeset_ty &S) override { return DDAI.GetTestResult(S, Required); } |