summaryrefslogtreecommitdiffhomepage
path: root/coff.cpp
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2024-07-09 18:58:56 +0200
committerRoland Reichwein <mail@reichwein.it>2024-07-09 18:58:56 +0200
commitf8c4fe1614cc79df9f97c8a7754cf2a5aaf5063d (patch)
treea5912910fc40b408c05172d438cd0d53192b2211 /coff.cpp
parentc156b07da6e8550f989919c3a015acdedfe8664f (diff)
Use libreichwein, and googletest from Debian
Diffstat (limited to 'coff.cpp')
-rw-r--r--coff.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/coff.cpp b/coff.cpp
index 1a4cf57..013ca9e 100644
--- a/coff.cpp
+++ b/coff.cpp
@@ -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);
}