From da041de64642d204eb4394994baf29f51e8d3e8a Mon Sep 17 00:00:00 2001 From: Zack Buhman Date: Tue, 31 Dec 2024 13:27:22 -0600 Subject: [PATCH] iso9660/test: missing namespace --- iso9660/test.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/iso9660/test.cpp b/iso9660/test.cpp index 1fdab1d..bdbdd99 100644 --- a/iso9660/test.cpp +++ b/iso9660/test.cpp @@ -1,6 +1,7 @@ #include #include #include +#include #include "primary_volume_descriptor.hpp" #include "directory_record.hpp" @@ -15,6 +16,8 @@ void write_field(const uint8_t * s, const int len) int main() { + using namespace iso9660; + std::ifstream ifs("test.iso"); std::string content( (std::istreambuf_iterator(ifs) ), (std::istreambuf_iterator() ) );