1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 19:14:47 +02:00

Clean up the services.h includes.

This commit is contained in:
Sadie Powell
2024-03-09 13:41:21 +00:00
parent 39d288f99f
commit ef37daf44a
5 changed files with 30 additions and 30 deletions
-1
View File
@@ -15,7 +15,6 @@
#include "regchannel.h"
#include "users.h"
#include "opertype.h"
#include <stack>
namespace Configuration
{
+2
View File
@@ -8,6 +8,8 @@
#pragma once
#include <stdexcept>
namespace SQL
{
+23 -29
View File
@@ -11,39 +11,33 @@
#pragma once
#include <cstdarg>
#include <cstddef>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <bitset>
#include <deque>
#include <exception>
#include <fstream>
#include <iostream>
#include <list>
#include <map>
#include <set>
#include <sstream>
#include <vector>
#ifndef _WIN32
# include <unistd.h>
#endif
#include "defs.h"
#include "sysconf.h"
#define BUFSIZE 1024
#include <cstdio>
#include <cstdlib>
#include <cstdarg>
#include <stdexcept>
#include <cstring>
#ifndef _WIN32
#include <unistd.h>
#endif
/* Pull in the various bits of STL */
#include <cstdint>
#include <cstddef>
#include <iostream>
#include <fstream>
#include <sstream>
#include <map>
#include <exception>
#include <list>
#include <vector>
#include <deque>
#include <bitset>
#include <set>
#include <algorithm>
#include <iterator>
#include "defs.h"
#define _(x) x
#ifndef _WIN32
+3
View File
@@ -17,6 +17,9 @@
#include "channels.h"
#include "hashcomp.h"
#include <stack>
#include <stdexcept>
using Configuration::File;
using Configuration::Conf;
using Configuration::Internal::Block;
+2
View File
@@ -13,6 +13,8 @@
#include "threadengine.h"
#include "anope.h"
#include <stdexcept>
static void *entry_point(void *parameter)
{
Thread *thread = static_cast<Thread *>(parameter);