aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-05-29 01:03:28 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-05-29 01:03:28 +0300
commita38dacc6489ff3c7a0748a01ed7cc2bd0cdaaa7c (patch)
treede48e7d8b3f9d66c9e11dd048ac9062921b05801 /src
parentadd .clang-tidy, `make check` (diff)
downloadwinapi-debug-a38dacc6489ff3c7a0748a01ed7cc2bd0cdaaa7c.tar.gz
winapi-debug-a38dacc6489ff3c7a0748a01ed7cc2bd0cdaaa7c.zip
include/pdb/ -> include/winapi/debug/
Diffstat (limited to '')
-rw-r--r--src/call_stack.cpp2
-rw-r--r--src/dbghelp.cpp3
-rw-r--r--src/module.cpp3
-rw-r--r--src/repo.cpp3
-rw-r--r--src/symbol.cpp3
5 files changed, 5 insertions, 9 deletions
diff --git a/src/call_stack.cpp b/src/call_stack.cpp
index d47a8ca..f6ac0f9 100644
--- a/src/call_stack.cpp
+++ b/src/call_stack.cpp
@@ -3,7 +3,7 @@
// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
-#include <pdb/all.hpp>
+#include <winapi/debug.hpp>
#include <windows.h>
diff --git a/src/dbghelp.cpp b/src/dbghelp.cpp
index d42c900..f645eb4 100644
--- a/src/dbghelp.cpp
+++ b/src/dbghelp.cpp
@@ -3,8 +3,7 @@
// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
-#include <pdb/all.hpp>
-
+#include <winapi/debug.hpp>
#include <winapi/error.hpp>
#include <winapi/file.hpp>
#include <winapi/utf8.hpp>
diff --git a/src/module.cpp b/src/module.cpp
index 672cceb..bb5a7a5 100644
--- a/src/module.cpp
+++ b/src/module.cpp
@@ -3,8 +3,7 @@
// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
-#include <pdb/all.hpp>
-
+#include <winapi/debug.hpp>
#include <winapi/utf8.hpp>
#include <cstring>
diff --git a/src/repo.cpp b/src/repo.cpp
index 610ef9a..b186178 100644
--- a/src/repo.cpp
+++ b/src/repo.cpp
@@ -3,8 +3,7 @@
// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
-#include <pdb/all.hpp>
-
+#include <winapi/debug.hpp>
#include <winapi/file.hpp>
#include <map>
diff --git a/src/symbol.cpp b/src/symbol.cpp
index 4de9a7d..27e93b5 100644
--- a/src/symbol.cpp
+++ b/src/symbol.cpp
@@ -3,8 +3,7 @@
// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
-#include <pdb/all.hpp>
-
+#include <winapi/debug.hpp>
#include <winapi/utf8.hpp>
#include <dbghelp.h>