0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-26 07:23:53 +01:00

ircd::magick: Minor cleanup.

This commit is contained in:
Jason Volk 2019-09-24 17:55:01 -07:00
parent 7ea609ee67
commit 6dcdbba06b
2 changed files with 6 additions and 16 deletions

View file

@ -65,10 +65,10 @@
#include "rfc3986.h"
#include "net/net.h"
#include "server/server.h"
#include "magick.h"
#include "m/m.h"
#include "resource/resource.h"
#include "client.h"
#include "magick.h"
/// \brief Internet Relay Chat daemon. This is the principal namespace for IRCd.
///

View file

@ -159,21 +159,15 @@ namespace ircd::magick
static void sig_pre(), sig_post();
}
/// List of signals from libmagick
decltype(ircd::magick::sig_overrides)
ircd::magick::sig_overrides
{
#ifdef HAVE_SIGNAL_H
SIGABRT,
SIGBUS,
SIGCHLD,
SIGFPE,
SIGHUP,
SIGINT,
SIGQUIT,
SIGTERM,
SIGSEGV,
SIGXCPU,
SIGXFSZ,
SIGABRT, SIGBUS, SIGCHLD,
SIGFPE, SIGHUP, SIGINT,
SIGQUIT, SIGTERM, SIGSEGV,
SIGXCPU, SIGXFSZ,
#endif HAVE_SIGNAL_H
};
@ -516,10 +510,6 @@ ircd::magick::display::display(const ImageInfo &info,
// util (internal)
//
namespace ircd::magick
{
}
template<class return_t,
class function,
class... args>