aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/call_stack.cpp2
-rw-r--r--src/dbghelp.cpp5
-rw-r--r--src/error.cpp2
-rw-r--r--src/module.cpp5
-rw-r--r--src/process.cpp5
-rw-r--r--src/repo.cpp2
-rw-r--r--src/symbol.cpp5
-rw-r--r--src/utils/file.cpp2
8 files changed, 12 insertions, 16 deletions
diff --git a/src/call_stack.cpp b/src/call_stack.cpp
index d9e0637..aec50de 100644
--- a/src/call_stack.cpp
+++ b/src/call_stack.cpp
@@ -3,7 +3,7 @@
// For details, see https://github.com/egor-tensin/pdb-repo.
// Distributed under the MIT License.
-#include "pdb/all.hpp"
+#include <pdb/all.hpp>
#include <SafeInt.hpp>
diff --git a/src/dbghelp.cpp b/src/dbghelp.cpp
index 5b66914..8f0f7d6 100644
--- a/src/dbghelp.cpp
+++ b/src/dbghelp.cpp
@@ -3,11 +3,10 @@
// For details, see https://github.com/egor-tensin/pdb-repo.
// Distributed under the MIT License.
-#include "pdb/all.hpp"
-
-#include <boost/nowide/convert.hpp>
+#include <pdb/all.hpp>
#include <SafeInt.hpp>
+#include <boost/nowide/convert.hpp>
#include <dbghelp.h>
#include <windows.h>
diff --git a/src/error.cpp b/src/error.cpp
index d305e88..74cf395 100644
--- a/src/error.cpp
+++ b/src/error.cpp
@@ -3,7 +3,7 @@
// For details, see https://github.com/egor-tensin/pdb-repo.
// Distributed under the MIT License.
-#include "pdb/all.hpp"
+#include <pdb/all.hpp>
#include <boost/nowide/convert.hpp>
diff --git a/src/module.cpp b/src/module.cpp
index f4f3eb9..3f4764c 100644
--- a/src/module.cpp
+++ b/src/module.cpp
@@ -3,11 +3,10 @@
// For details, see https://github.com/egor-tensin/pdb-repo.
// Distributed under the MIT License.
-#include "pdb/all.hpp"
-
-#include <boost/nowide/convert.hpp>
+#include <pdb/all.hpp>
#include <SafeInt.hpp>
+#include <boost/nowide/convert.hpp>
#include <cstring>
#include <sstream>
diff --git a/src/process.cpp b/src/process.cpp
index c2a32f4..5ba3734 100644
--- a/src/process.cpp
+++ b/src/process.cpp
@@ -1,8 +1,7 @@
-#include "pdb/all.hpp"
-
-#include <boost/nowide/convert.hpp>
+#include <pdb/all.hpp>
#include <SafeInt.hpp>
+#include <boost/nowide/convert.hpp>
#include <windows.h>
diff --git a/src/repo.cpp b/src/repo.cpp
index 6ef5252..fbdf1ae 100644
--- a/src/repo.cpp
+++ b/src/repo.cpp
@@ -3,7 +3,7 @@
// For details, see https://github.com/egor-tensin/pdb-repo.
// Distributed under the MIT License.
-#include "pdb/all.hpp"
+#include <pdb/all.hpp>
#include <map>
#include <sstream>
diff --git a/src/symbol.cpp b/src/symbol.cpp
index d51cc83..ad7bd3f 100644
--- a/src/symbol.cpp
+++ b/src/symbol.cpp
@@ -3,11 +3,10 @@
// For details, see https://github.com/egor-tensin/pdb-repo.
// Distributed under the MIT License.
-#include "pdb/all.hpp"
-
-#include <boost/nowide/convert.hpp>
+#include <pdb/all.hpp>
#include <SafeInt.hpp>
+#include <boost/nowide/convert.hpp>
#include <dbghelp.h>
#include <windows.h>
diff --git a/src/utils/file.cpp b/src/utils/file.cpp
index 826f470..4d7dd53 100644
--- a/src/utils/file.cpp
+++ b/src/utils/file.cpp
@@ -3,7 +3,7 @@
// For details, see https://github.com/egor-tensin/pdb-repo.
// Distributed under the MIT License.
-#include "pdb/all.hpp"
+#include <pdb/all.hpp>
#include <SafeInt.hpp>