diff options
author | Roland Reichwein <mail@reichwein.it> | 2024-07-09 18:58:56 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2024-07-09 18:58:56 +0200 |
commit | f8c4fe1614cc79df9f97c8a7754cf2a5aaf5063d (patch) | |
tree | a5912910fc40b408c05172d438cd0d53192b2211 /coff.cpp | |
parent | c156b07da6e8550f989919c3a015acdedfe8664f (diff) |
Use libreichwein, and googletest from Debian
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); } |