aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/pdb/repo.hpp
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-05-16 01:21:58 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-05-16 01:21:58 +0300
commitde5c928779d69e22221d08c21ce3b5455157004e (patch)
tree50ac3106f4fd91c5c900540596bed8b1c5db807d /include/pdb/repo.hpp
parentuse error reporting from winapi-common (diff)
downloadwinapi-debug-de5c928779d69e22221d08c21ce3b5455157004e.tar.gz
winapi-debug-de5c928779d69e22221d08c21ce3b5455157004e.zip
export pdb::file to winapi-common's File
Diffstat (limited to 'include/pdb/repo.hpp')
-rw-r--r--include/pdb/repo.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/pdb/repo.hpp b/include/pdb/repo.hpp
index 571a164..3b194ff 100644
--- a/include/pdb/repo.hpp
+++ b/include/pdb/repo.hpp
@@ -9,7 +9,8 @@
#include "dbghelp.hpp"
#include "module.hpp"
#include "symbol.hpp"
-#include "utils/file.hpp"
+
+#include <winapi/file.hpp>
#include <functional>
#include <map>
@@ -49,7 +50,7 @@ private:
const DbgHelp dbghelp{DbgHelp::post_mortem()};
- std::unordered_set<file::ID> file_ids;
+ std::unordered_set<winapi::File::ID> file_ids;
std::map<Address, Module> online_bases;
std::map<Address, const Module&> offline_bases;
};