mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
GP-2985 Remove "using namespace" directives
This commit is contained in:
parent
79c0f3f1de
commit
8b442eac0b
20 changed files with 127 additions and 42 deletions
|
@ -33,7 +33,35 @@
|
|||
#include <cstring>
|
||||
#include <cctype>
|
||||
|
||||
using namespace std;
|
||||
using std::string;
|
||||
using std::map;
|
||||
using std::set;
|
||||
using std::list;
|
||||
using std::vector;
|
||||
using std::pair;
|
||||
using std::make_pair;
|
||||
using std::ostream;
|
||||
using std::istream;
|
||||
using std::ifstream;
|
||||
using std::ofstream;
|
||||
using std::istringstream;
|
||||
using std::ostringstream;
|
||||
using std::ios;
|
||||
using std::dec;
|
||||
using std::hex;
|
||||
using std::oct;
|
||||
using std::setfill;
|
||||
using std::fixed;
|
||||
using std::setprecision;
|
||||
using std::setw;
|
||||
using std::endl;
|
||||
using std::ws;
|
||||
using std::min;
|
||||
using std::max;
|
||||
using std::to_string;
|
||||
using std::piecewise_construct;
|
||||
using std::forward_as_tuple;
|
||||
|
||||
|
||||
/// \brief The lowest level error generated by the decompiler
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue