diff options
author | bloodstalker <thabogre@gmail.com> | 2017-07-03 20:02:39 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-07-03 20:02:39 +0000 |
commit | 108205de40da668ec80be3317dbc050d47beed72 (patch) | |
tree | a319d717f542d719d911a26cd6e59bbf70ab6f88 | |
parent | fixed and updated (diff) | |
download | mutator-108205de40da668ec80be3317dbc050d47beed72.tar.gz mutator-108205de40da668ec80be3317dbc050d47beed72.zip |
the matchers are broken. the standard headers are out until i fix that.
Diffstat (limited to '')
-rw-r--r-- | test/bruisertest/test.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/bruisertest/test.cpp b/test/bruisertest/test.cpp index f3e32d1..2e39dd9 100644 --- a/test/bruisertest/test.cpp +++ b/test/bruisertest/test.cpp @@ -1,6 +1,8 @@ +#if 0 #include <fstream> #include <iostream> +#endif namespace devi { @@ -20,10 +22,12 @@ namespace devi int main(int argc, const char **argv) { +#if 0 std::ofstream myfile; myfile.open("./touch"); myfile << "line one.\n"; myfile.close(); +#endif return 0; } |