diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2020-04-03 18:57:53 +0100 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2020-04-30 09:25:36 +0100 |
commit | 02fed84be089d81a5a9a812c2c8dd112f5e2fa71 (patch) | |
tree | 749c6030b8e371dbfd10906f13374d55a84be6d2 /unittests | |
parent | e2cbdaeb98168db12aba4abab04eea2416c0931c (diff) | |
download | klee-02fed84be089d81a5a9a812c2c8dd112f5e2fa71.tar.gz |
Removed include/klee/util and moved header files to appropriate places
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/Ref/RefTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unittests/Ref/RefTest.cpp b/unittests/Ref/RefTest.cpp index 17ab88e5..bf313513 100644 --- a/unittests/Ref/RefTest.cpp +++ b/unittests/Ref/RefTest.cpp @@ -11,9 +11,10 @@ More details at http://keeda.stanford.edu/pipermail/klee-commits/2012-February/000904.html */ -#include "klee/util/Ref.h" +#include "klee/ADT/Ref.h" #include "gtest/gtest.h" #include <iostream> + using klee::ref; int finished = 0; |