diff --git a/ClangAstDumper/testSources/foo.cpp b/ClangAstDumper/testSources/foo.cpp deleted file mode 100644 index e3826c68a..000000000 --- a/ClangAstDumper/testSources/foo.cpp +++ /dev/null @@ -1,6 +0,0 @@ -#include "foo.h" - -int myFunction() { - /* code */ - return 0; -} diff --git a/ClangAstDumper/testSources/foo.h b/ClangAstDumper/testSources/foo.h deleted file mode 100644 index e30bbb3ea..000000000 --- a/ClangAstDumper/testSources/foo.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef __FOO_H__ -#define __FOO_H__ - -int myFunction(); - -#endif // __FOO_H__ \ No newline at end of file diff --git a/ClangAstDumper/testSources/main.cpp b/ClangAstDumper/testSources/main.cpp deleted file mode 100644 index aa2a7b605..000000000 --- a/ClangAstDumper/testSources/main.cpp +++ /dev/null @@ -1,6 +0,0 @@ -#include "foo.h" - -int main(int argc, char const *argv[]) { - /* code */ - return myFunction(); -}