diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-06-12 14:48:55 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-06-12 15:45:07 +0300 |
commit | 8b7e074fed4ae0a8d2b3ac31c2db83273c88f719 (patch) | |
tree | 793fe02d05c51fcf42f423231d32a882a8cf6ca6 /tools | |
parent | ba2a11d5be57d0b0bdfa67f4259060e6710865ac (diff) | |
download | deheader-8b7e074fed4ae0a8d2b3ac31c2db83273c88f719.tar.gz deheader-8b7e074fed4ae0a8d2b3ac31c2db83273c88f719.tar.bz2 deheader-8b7e074fed4ae0a8d2b3ac31c2db83273c88f719.tar.xz deheader-8b7e074fed4ae0a8d2b3ac31c2db83273c88f719.zip |
Add test 6.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/ci/samples/test6.cpp | 12 | ||||
-rw-r--r-- | tools/ci/samples/test6.h | 6 |
2 files changed, 18 insertions, 0 deletions
diff --git a/tools/ci/samples/test6.cpp b/tools/ci/samples/test6.cpp new file mode 100644 index 0000000..3a39d53 --- /dev/null +++ b/tools/ci/samples/test6.cpp @@ -0,0 +1,12 @@ +#include "test6.h" + +#ifndef QQQ +#include "include1.h" +#else // QQQ +#include "include2.h" +#endif // QQQ + +int function1() +{ + return 0; +} diff --git a/tools/ci/samples/test6.h b/tools/ci/samples/test6.h new file mode 100644 index 0000000..9001bfc --- /dev/null +++ b/tools/ci/samples/test6.h @@ -0,0 +1,6 @@ +#ifndef TEST6 +#define TEST6 + +int function1(); + +#endif // TEST6
\ No newline at end of file |