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/dbghelp.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/dbghelp.hpp')
-rw-r--r-- | include/winapi/debug/dbghelp.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/winapi/debug/dbghelp.hpp b/include/winapi/debug/dbghelp.hpp index 6965823..fb179f3 100644 --- a/include/winapi/debug/dbghelp.hpp +++ b/include/winapi/debug/dbghelp.hpp @@ -14,7 +14,7 @@ #include <functional> #include <string> -namespace pdb { +namespace winapi { class DbgHelp { public: @@ -60,12 +60,12 @@ inline void swap(DbgHelp& a, DbgHelp& b) noexcept { a.swap(b); } -} // namespace pdb +} // namespace winapi namespace std { template <> -inline void swap(pdb::DbgHelp& a, pdb::DbgHelp& b) noexcept { +inline void swap(winapi::DbgHelp& a, winapi::DbgHelp& b) noexcept { a.swap(b); } |