diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-16 01:21:58 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-16 01:21:58 +0300 |
commit | de5c928779d69e22221d08c21ce3b5455157004e (patch) | |
tree | 50ac3106f4fd91c5c900540596bed8b1c5db807d /include/pdb/repo.hpp | |
parent | use error reporting from winapi-common (diff) | |
download | winapi-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.hpp | 5 |
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; }; |