mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 11:38:20 +00:00
Move 'using namespace' declaration after other includes
This commit is contained in:
parent
0e9227b753
commit
bd1379e864
1 changed files with 2 additions and 1 deletions
|
@ -10,7 +10,6 @@
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
#ifdef HAVE_READLINE
|
#ifdef HAVE_READLINE
|
||||||
#include <readline/readline.h>
|
#include <readline/readline.h>
|
||||||
|
@ -35,6 +34,8 @@ using namespace std;
|
||||||
#include "zeek/module_util.h"
|
#include "zeek/module_util.h"
|
||||||
#include "zeek/input.h"
|
#include "zeek/input.h"
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
bool zeek::detail::g_policy_debug = false;
|
bool zeek::detail::g_policy_debug = false;
|
||||||
bool& g_policy_debug = zeek::detail::g_policy_debug;
|
bool& g_policy_debug = zeek::detail::g_policy_debug;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue