reorder #include
This commit is contained in:
parent
c879591630
commit
2db18565b2
2 changed files with 4 additions and 2 deletions
|
@ -26,6 +26,9 @@
|
|||
#ifndef FILTER_PARSER_HPP
|
||||
#define FILTER_PARSER_HPP
|
||||
|
||||
#include <stack>
|
||||
#include <iostream>
|
||||
|
||||
#include <boost/shared_ptr.hpp>
|
||||
#include <boost/spirit/core.hpp>
|
||||
#include <boost/spirit/symbols.hpp>
|
||||
|
@ -39,8 +42,6 @@
|
|||
#include "filter.hpp"
|
||||
#include "regex_filter.hpp"
|
||||
|
||||
#include <stack>
|
||||
#include <iostream>
|
||||
|
||||
using namespace boost::spirit;
|
||||
using std::string;
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
#include <map>
|
||||
#include <vector>
|
||||
#include <cassert>
|
||||
|
||||
#include "global.hpp"
|
||||
#include "factory.hpp"
|
||||
#include "filter.hpp"
|
||||
|
|
Loading…
Reference in a new issue