From bd1d4592fc2ec7025c10d4ede858ab22fd5021ce Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Sun, 18 Dec 2022 16:40:32 +0100 Subject: [PATCH] Fixed headers --- src/imemfile.cpp | 2 +- src/memstreambuf.cpp | 2 +- src/memstreambuf.hpp | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) 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 {