diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2020-04-03 13:16:22 +0100 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2020-04-30 09:25:36 +0100 |
commit | 7d85ee81dcf23e841ef794fa6ba08a076dcdebf0 (patch) | |
tree | 81309c83dac4d77e1f43681845e281e569cb92c6 /unittests/Time/TimeTest.cpp | |
parent | e6d3f654df90dc6211d6c4993b937ef44b945f36 (diff) | |
download | klee-7d85ee81dcf23e841ef794fa6ba08a076dcdebf0.tar.gz |
Removed the Internal directory from include/klee
Diffstat (limited to 'unittests/Time/TimeTest.cpp')
-rw-r--r-- | unittests/Time/TimeTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/Time/TimeTest.cpp b/unittests/Time/TimeTest.cpp index a05c41b4..98d61e7d 100644 --- a/unittests/Time/TimeTest.cpp +++ b/unittests/Time/TimeTest.cpp @@ -1,4 +1,4 @@ -#include "klee/Internal/System/Time.h" +#include "klee/System/Time.h" #include "gtest/gtest.h" #include "gtest/gtest-death-test.h" @@ -182,4 +182,4 @@ TEST(TimeTest, ImplicitArithmeticConversions) { t1 *= 2.2; d = t1.toSeconds(); ASSERT_EQ(d, 2200.0); -} \ No newline at end of file +} |