diff --git a/src/imemfile.cpp b/src/imemfile.cpp index 196d3e3..1321b59 100644 --- a/src/imemfile.cpp +++ b/src/imemfile.cpp @@ -1,4 +1,4 @@ -#include "libscio.hpp" +#include "imemfile.hpp" sc::io::imemfile::imemfile(const std::string& path) : std::istream {&_buf}, _file {path}, diff --git a/src/memstreambuf.cpp b/src/memstreambuf.cpp index 61ec8c8..50da3b7 100644 --- a/src/memstreambuf.cpp +++ b/src/memstreambuf.cpp @@ -1,4 +1,4 @@ -#include "libscio.hpp" +#include "memstreambuf.hpp" #include #include diff --git a/src/memstreambuf.hpp b/src/memstreambuf.hpp index 78a228e..c3deceb 100644 --- a/src/memstreambuf.hpp +++ b/src/memstreambuf.hpp @@ -2,6 +2,7 @@ #define MEMSTREAMBUF_H_ #include +#include namespace sc { namespace io {