diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-05-16 19:47:58 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-05-16 19:47:58 +0000 |
commit | b76161e41bc2c07cd47f9c61f875d1be95e26d10 (patch) | |
tree | d03c19ce10dec6419f97df1d4dac9d47eb88982f /unittests/Breakpoint/BreakpointIDTest.cpp | |
parent | 8b4000f13b303cc154136abc74c55670673e2a96 (diff) |
Notes
Diffstat (limited to 'unittests/Breakpoint/BreakpointIDTest.cpp')
-rw-r--r-- | unittests/Breakpoint/BreakpointIDTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/Breakpoint/BreakpointIDTest.cpp b/unittests/Breakpoint/BreakpointIDTest.cpp index a84fa5439527..5cded9912f18 100644 --- a/unittests/Breakpoint/BreakpointIDTest.cpp +++ b/unittests/Breakpoint/BreakpointIDTest.cpp @@ -10,7 +10,7 @@ #include "gtest/gtest.h" #include "lldb/Breakpoint/BreakpointID.h" -#include "lldb/Utility/Error.h" +#include "lldb/Utility/Status.h" #include "llvm/ADT/StringRef.h" @@ -18,7 +18,7 @@ using namespace lldb; using namespace lldb_private; TEST(BreakpointIDTest, StringIsBreakpointName) { - Error E; + Status E; EXPECT_FALSE(BreakpointID::StringIsBreakpointName("1breakpoint", E)); EXPECT_FALSE(BreakpointID::StringIsBreakpointName("-", E)); EXPECT_FALSE(BreakpointID::StringIsBreakpointName("", E)); |