diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-09-29 23:17:02 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-09-30 00:37:25 +0300 |
commit | 341ce525f9f73e4342e3faa83286bce81c24fadd (patch) | |
tree | 6cfb485c41ea2f0fb4b72a5c5479be8a1534ca67 /test cases/unit/70 clang-tidy/cttest.cpp | |
parent | 1f6d217081294b581edc3dc91f55d2c726417825 (diff) | |
download | meson-clangtidy.tar.gz |
Add clang-tidy target. Closes #2383.clangtidy
Diffstat (limited to 'test cases/unit/70 clang-tidy/cttest.cpp')
-rw-r--r-- | test cases/unit/70 clang-tidy/cttest.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test cases/unit/70 clang-tidy/cttest.cpp b/test cases/unit/70 clang-tidy/cttest.cpp new file mode 100644 index 000000000..07b35a666 --- /dev/null +++ b/test cases/unit/70 clang-tidy/cttest.cpp @@ -0,0 +1,7 @@ +#include<cstdio> + +int main(int, char**) { + bool intbool = 1; + printf("Intbool is %d\n", (int)intbool); + return 0; +} |