aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/winapi/debug/dbghelp.hpp
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-05-29 01:11:44 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-05-29 01:11:44 +0300
commite2961032fd1896899f688cdcdf41f23ed71e3e82 (patch)
tree0ce11fa3137f027866e91bdc7cc71ff36fe3f6f8 /include/winapi/debug/dbghelp.hpp
parentinclude/pdb/ -> include/winapi/debug/ (diff)
downloadwinapi-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.hpp6
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);
}