-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathcs_ev.cpp
More file actions
18 lines (14 loc) · 439 Bytes
/
cs_ev.cpp
File metadata and controls
18 lines (14 loc) · 439 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef DISCARDSERVER
#ifdef EVSERVER
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-parameter"
#pragma GCC diagnostic ignored "-Wunused-value"
#pragma GCC diagnostic ignored "-Wunused-function"
#pragma GCC diagnostic ignored "-Wcomment"
#pragma GCC diagnostic ignored "-Wbitwise-op-parentheses"
#define EV_STANDALONE 1
#define EV_CHILD_ENABLE 1
#include "evserver/ev.c"
#pragma GCC diagnostic pop
#endif
#endif