summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorWinfidonarleyan <dowlandtop@yandex.com>2023-11-18 23:51:26 +0700
committerGitHub <noreply@github.com>2023-11-18 17:51:26 +0100
commite90d7a2f9246107e066eda45175c933c5ad0d1e5 (patch)
tree18d7a4eccce6163852fdba627517c446a3825361 /src/common
parent18d3940145cc633c961e76e3fe54793b43743e8b (diff)
chore(Core/Misc): sort includes (#17776)
* chore(Cleanup): sort includes * fix build * fix build again
Diffstat (limited to 'src/common')
-rw-r--r--src/common/Collision/Maps/TileAssembler.cpp2
-rw-r--r--src/common/Dynamic/ObjectRegistry.h2
-rw-r--r--src/common/Logging/enuminfo_LogCommon.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/common/Collision/Maps/TileAssembler.cpp b/src/common/Collision/Maps/TileAssembler.cpp
index c34fa3828b..b86d83419b 100644
--- a/src/common/Collision/Maps/TileAssembler.cpp
+++ b/src/common/Collision/Maps/TileAssembler.cpp
@@ -20,10 +20,10 @@
#include "MapDefines.h"
#include "MapTree.h"
#include "VMapDefinitions.h"
+#include <boost/filesystem.hpp>
#include <iomanip>
#include <set>
#include <sstream>
-#include <boost/filesystem.hpp>
using G3D::Vector3;
using G3D::AABox;
diff --git a/src/common/Dynamic/ObjectRegistry.h b/src/common/Dynamic/ObjectRegistry.h
index ba9bccd394..fe8c64dd74 100644
--- a/src/common/Dynamic/ObjectRegistry.h
+++ b/src/common/Dynamic/ObjectRegistry.h
@@ -20,10 +20,10 @@
#include "Define.h"
#include <map>
+#include <memory>
#include <string>
#include <unordered_map>
#include <vector>
-#include <memory>
/** ObjectRegistry holds all registry item of the same type
*/
diff --git a/src/common/Logging/enuminfo_LogCommon.cpp b/src/common/Logging/enuminfo_LogCommon.cpp
index 2e42655635..e1750cb3f8 100644
--- a/src/common/Logging/enuminfo_LogCommon.cpp
+++ b/src/common/Logging/enuminfo_LogCommon.cpp
@@ -15,8 +15,8 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "LogCommon.h"
#include "Define.h"
+#include "LogCommon.h"
#include "SmartEnum.h"
#include <stdexcept>