diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-09-14 02:17:43 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-09-14 02:22:57 +0300 |
commit | d373bc6ed0c3b97526fc350b01d2d407409d0fce (patch) | |
tree | 980e72ed5aeabdea4e78fe434368ded664f14ea7 /src | |
parent | unit_tests: add a test for call stack collection (diff) | |
download | winapi-debug-d373bc6ed0c3b97526fc350b01d2d407409d0fce.tar.gz winapi-debug-d373bc6ed0c3b97526fc350b01d2d407409d0fce.zip |
clang-format: regroup #includes
Diffstat (limited to 'src')
-rw-r--r-- | src/call_stack.cpp | 2 | ||||
-rw-r--r-- | src/dbghelp.cpp | 5 | ||||
-rw-r--r-- | src/error.cpp | 2 | ||||
-rw-r--r-- | src/module.cpp | 5 | ||||
-rw-r--r-- | src/process.cpp | 5 | ||||
-rw-r--r-- | src/repo.cpp | 2 | ||||
-rw-r--r-- | src/symbol.cpp | 5 | ||||
-rw-r--r-- | src/utils/file.cpp | 2 |
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> |