diff options
author | Zachary Turner <zturner@google.com> | 2016-01-13 21:22:00 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-01-13 21:22:00 +0000 |
commit | a505be4e5d3ba2e8bab6e54047e8d14b840953c9 (patch) | |
tree | 13a92ecf99ba4ae6ee5c3cd6f91da22a4f6b8037 /lldb/source/Expression/ExpressionSourceCode.cpp | |
parent | 673cf7e80b8b0de457811ee069da903b1e5685ca (diff) | |
download | bcm5719-llvm-a505be4e5d3ba2e8bab6e54047e8d14b840953c9.tar.gz bcm5719-llvm-a505be4e5d3ba2e8bab6e54047e8d14b840953c9.zip |
Fix some compiler warnings with MSVC 2015.
llvm-svn: 257671
Diffstat (limited to 'lldb/source/Expression/ExpressionSourceCode.cpp')
-rw-r--r-- | lldb/source/Expression/ExpressionSourceCode.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Expression/ExpressionSourceCode.cpp b/lldb/source/Expression/ExpressionSourceCode.cpp index c4ab7a95d7a..46e78d0c95a 100644 --- a/lldb/source/Expression/ExpressionSourceCode.cpp +++ b/lldb/source/Expression/ExpressionSourceCode.cpp @@ -118,6 +118,8 @@ public: return false; else return true; + default: + return false; } } |