aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test/bruisertest/test.cpp4
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;
}