Skip to content
Snippets Groups Projects
Commit b4a9ba78 authored by Houtan Bastani's avatar Houtan Bastani
Browse files

preprocessor: eliminate clang warning about using namespace std

parent a943463e
No related branches found
No related tags found
No related merge requests found
...@@ -20,12 +20,12 @@ ...@@ -20,12 +20,12 @@
#ifndef _SYMBOL_LIST_HH #ifndef _SYMBOL_LIST_HH
#define _SYMBOL_LIST_HH #define _SYMBOL_LIST_HH
using namespace std;
#include <string> #include <string>
#include <vector> #include <vector>
#include <ostream> #include <ostream>
using namespace std;
//! Used to store a list of symbols //! Used to store a list of symbols
/*! This class is no more than a vector<string>, with a pretty-printer for Matlab */ /*! This class is no more than a vector<string>, with a pretty-printer for Matlab */
class SymbolList class SymbolList
......
...@@ -20,12 +20,12 @@ ...@@ -20,12 +20,12 @@
#ifndef _WARNINGCONSOLIDATION_HH #ifndef _WARNINGCONSOLIDATION_HH
#define _WARNINGCONSOLIDATION_HH #define _WARNINGCONSOLIDATION_HH
using namespace std;
#include <sstream> #include <sstream>
#include <string> #include <string>
#include "location.hh" #include "location.hh"
using namespace std;
//! Stores Warnings issued by the Preprocessor //! Stores Warnings issued by the Preprocessor
class WarningConsolidation class WarningConsolidation
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment