diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-29 01:11:44 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-29 01:11:44 +0300 |
commit | e2961032fd1896899f688cdcdf41f23ed71e3e82 (patch) | |
tree | 0ce11fa3137f027866e91bdc7cc71ff36fe3f6f8 /include/winapi/debug/address.hpp | |
parent | include/pdb/ -> include/winapi/debug/ (diff) | |
download | winapi-debug-e2961032fd1896899f688cdcdf41f23ed71e3e82.tar.gz winapi-debug-e2961032fd1896899f688cdcdf41f23ed71e3e82.zip |
namespace pdb -> namespace winapi
Diffstat (limited to 'include/winapi/debug/address.hpp')
-rw-r--r-- | include/winapi/debug/address.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/winapi/debug/address.hpp b/include/winapi/debug/address.hpp index 3d7acd6..1370ed4 100644 --- a/include/winapi/debug/address.hpp +++ b/include/winapi/debug/address.hpp @@ -10,7 +10,7 @@ #include <sstream> #include <string> -namespace pdb { +namespace winapi { typedef DWORD64 Address; @@ -31,4 +31,4 @@ inline bool parse_address(Address& dest, const std::string& src) { return iss >> dest && !iss.get(c); } -} // namespace pdb +} // namespace winapi |