diff options
Diffstat (limited to 'test/tools/llvm-cov/Inputs/test.cpp')
-rw-r--r-- | test/tools/llvm-cov/Inputs/test.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/tools/llvm-cov/Inputs/test.cpp b/test/tools/llvm-cov/Inputs/test.cpp index 07bc3f2..e580e5a 100644 --- a/test/tools/llvm-cov/Inputs/test.cpp +++ b/test/tools/llvm-cov/Inputs/test.cpp @@ -1,3 +1,4 @@ +#include "test.h" #include <cstdlib> bool on = false; @@ -6,10 +7,6 @@ double grid[10][10] = {0}; const char * hello = "world"; const char * world = "hello"; -struct A { - virtual void B(); -}; - void A::B() {} void useless() {} |