aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/main.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-06-26 16:34:21 +0100
committerGravatar Sadie Powell2022-06-26 16:34:21 +0100
commit68fd81b31990fae50628e115a32f352a8fa61895 (patch)
tree150fd87c9742fccee6c6253fe734a88b06fd069a /src/modules/m_spanningtree/main.cpp
parentMove numeric helper classes to their own header. (diff)
Make clientprotocol{msg,event} and numericbuilder non-default headers.
Diffstat (limited to 'src/modules/m_spanningtree/main.cpp')
-rw-r--r--src/modules/m_spanningtree/main.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp
index f7089554f..b2fa9c2d8 100644
--- a/src/modules/m_spanningtree/main.cpp
+++ b/src/modules/m_spanningtree/main.cpp
@@ -28,18 +28,19 @@
#include "inspircd.h"
+#include "clientprotocolmsg.h"
+#include "iohook.h"
#include "socket.h"
#include "xline.h"
-#include "iohook.h"
-#include "resolvers.h"
+#include "commands.h"
+#include "link.h"
#include "main.h"
-#include "utils.h"
+#include "resolvers.h"
+#include "translate.h"
#include "treeserver.h"
-#include "link.h"
#include "treesocket.h"
-#include "commands.h"
-#include "translate.h"
+#include "utils.h"
ModuleSpanningTree::ModuleSpanningTree()
: Module(VF_VENDOR, "Allows linking multiple servers together as part of one network.")