summaryrefslogtreecommitdiff
path: root/include/object/outputstream.h
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2021-05-28 15:17:20 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2021-05-28 15:17:20 +0200
commit460ecf074d133cbe026cbddb7cf5fad1180c9831 (patch)
tree2beb0cfa84698dbb723c7c62acec703fad3437da /include/object/outputstream.h
parentcf3ba89c46301bb8c0a1eda470c353801117fc0b (diff)
Set loop/wakeup/ostream either via .config or via app/commandline
Diffstat (limited to 'include/object/outputstream.h')
-rw-r--r--include/object/outputstream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/object/outputstream.h b/include/object/outputstream.h
index 97887e9..6d25797 100644
--- a/include/object/outputstream.h
+++ b/include/object/outputstream.h
@@ -7,7 +7,7 @@
#define OUTPUTSTREAM_H
#include <stdint.h>
-#ifdef WITH_OSTREAM
+#ifdef CONFIG_ostream
#include <ostream>
#endif
@@ -47,7 +47,7 @@ class OutputStream {
OutputStream & operator<<(double number);
OutputStream & operator<<(OutputStream & (*fun) (OutputStream &));
-#ifdef WITH_OSTREAM
+#ifdef CONFIG_ostream
OutputStream & operator<<(std::string s);
#endif