diff options
author | Renato Golin <renato.golin@linaro.org> | 2016-05-14 13:14:39 +0000 |
---|---|---|
committer | Renato Golin <renato.golin@linaro.org> | 2016-05-14 13:14:39 +0000 |
commit | 15cb0bd080ce929322017a56ca2ea5301d8fcbc5 (patch) | |
tree | fd9b69dbded6a6f3f9225fe8187118af69597d53 /lldb | |
parent | c50a2a93aeb7876a8275a17ddc3168093f955046 (diff) | |
download | bcm5719-llvm-15cb0bd080ce929322017a56ca2ea5301d8fcbc5.tar.gz bcm5719-llvm-15cb0bd080ce929322017a56ca2ea5301d8fcbc5.zip |
[LLDB] Adding lldb_private namespace to DiagnosticSeverity. NFC.
This is a fix due to the addition of the new DiagnosticSeverity in
LLVMContext.h. This may warrant a change in name to be LLDB specific
but I leave that to the LLDB experts to refactor.
llvm-svn: 269562
Diffstat (limited to 'lldb')
-rw-r--r-- | lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp b/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp index 31ce01fd946..a9c2f560cc0 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp +++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp @@ -180,7 +180,7 @@ public: diag_str.push_back('\0'); const char *data = diag_str.data(); - DiagnosticSeverity severity; + lldb_private::DiagnosticSeverity severity; bool make_new_diagnostic = true; switch (DiagLevel) |