preprocessor: namespace fixes to remove clang warnings

time-shift
Houtan Bastani 2013-12-30 14:45:17 +01:00
parent f0629fddd2
commit 3745409f19
4 changed files with 4 additions and 8 deletions

View File

@ -22,8 +22,6 @@
%defines
%code top {
using namespace std;
class ParsingDriver;
}

View File

@ -20,13 +20,13 @@
#ifndef _EXPR_NODE_HH
#define _EXPR_NODE_HH
using namespace std;
#include <set>
#include <map>
#include <vector>
#include <ostream>
using namespace std;
#include "SymbolTable.hh"
#include "CodeInterpreter.hh"
#include "ExternalFunctionsTable.hh"

View File

@ -22,8 +22,6 @@
%defines
%code top {
using namespace std;
class MacroDriver;
}

View File

@ -20,12 +20,12 @@
#ifndef _MACRO_VALUE_HH
#define _MACRO_VALUE_HH
using namespace std;
#include <string>
#include <vector>
#include <sstream>
using namespace std;
class MacroDriver;
//! Base class for representing values in macro language