summaryrefslogtreecommitdiffhomepage
path: root/FoundationEx/src/reader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'FoundationEx/src/reader.cpp')
-rw-r--r--FoundationEx/src/reader.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/FoundationEx/src/reader.cpp b/FoundationEx/src/reader.cpp
index 7bce34d..0a3a2ba 100644
--- a/FoundationEx/src/reader.cpp
+++ b/FoundationEx/src/reader.cpp
@@ -9,6 +9,8 @@
#include <memory>
#include <utility>
+#include <Text.h>
+
#include "reader/buffer.h"
@@ -75,7 +77,7 @@ Count Reader::read(char* dest) { return actual->read(dest); }
Count Reader::read(char* dest, Count bytes) { return actual->read(dest, bytes); }
Count Reader::peek(char* dest) const { return actual->peek(dest); }
Count Reader::peek(char* dest, Count bytes) const { return actual->peek(dest, bytes); }
-const char* Reader::data() const { return actual->data(); }
+Text Reader::more() { return actual->more(); }
} // namespace foundation