summaryrefslogtreecommitdiff
path: root/tests/cpp/include/bool2str.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cpp/include/bool2str.h')
-rw-r--r--tests/cpp/include/bool2str.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/cpp/include/bool2str.h b/tests/cpp/include/bool2str.h
deleted file mode 100644
index 26aac80..0000000
--- a/tests/cpp/include/bool2str.h
+++ /dev/null
@@ -1,12 +0,0 @@
-/**
- *
- * bool -> string
- *
- */
-
-
-
-std::string bool2str(bool b)
-{
- return b ? "Yes" : "No";
-}