From 096709fb337a0c9bb6c869b4476bd37c85cd9fec Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Sat, 11 Jul 2020 10:06:28 +0200 Subject: [PATCH] fixed namespace --- mapped_file.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mapped_file.cpp b/mapped_file.cpp index c724da8..88b9a0e 100644 --- a/mapped_file.cpp +++ b/mapped_file.cpp @@ -16,6 +16,8 @@ #include #include +using namespace sc::io; + mapped_file::mapped_file(const std::string& path) : std::istream {&_membuf} { open(path); }