diff options
Diffstat (limited to 'coff.cpp')
-rw-r--r-- | coff.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,8 @@ +// Windows COFF file format for objects and executables + #include "coff.h" -#include "file.h" +#include <libreichwein/file.h> #include <boost/algorithm/string/predicate.hpp> #include <boost/endian/conversion.hpp> @@ -648,5 +650,5 @@ void COFF::Create(std::filesystem::path path) PutCOFFSectionCode(data); PutCOFFSectionData(data); - File::setFile(path, data); + Reichwein::File::setFile(path, data); } |