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 /src/module.cpp | |
parent | include/pdb/ -> include/winapi/debug/ (diff) | |
download | winapi-debug-e2961032fd1896899f688cdcdf41f23ed71e3e82.tar.gz winapi-debug-e2961032fd1896899f688cdcdf41f23ed71e3e82.zip |
namespace pdb -> namespace winapi
Diffstat (limited to 'src/module.cpp')
-rw-r--r-- | src/module.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/module.cpp b/src/module.cpp index bb5a7a5..d676151 100644 --- a/src/module.cpp +++ b/src/module.cpp @@ -12,7 +12,7 @@ #include <stdexcept> #include <string> -namespace pdb { +namespace winapi { ModuleInfo::ModuleInfo() : ModuleInfo{create_impl()} {} @@ -72,4 +72,4 @@ std::string Module::invalid_online_address(Address online) const { return oss.str(); } -} // namespace pdb +} // namespace winapi |