mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-08-28 16:53:45 +02:00
Remove "using namespace std" from compiler header files and fix the fallout.
This commit is contained in:
@@ -186,10 +186,10 @@ struct expr_scan_t {
|
||||
/* This function takes a fully qualified Verilog name (which may have,
|
||||
for example, dots in it) and produces a mangled version that can be
|
||||
used by most any language. */
|
||||
extern string mangle(const string&str);
|
||||
extern std::string mangle(const std::string&str);
|
||||
|
||||
/* This function takes a string and produces an escaped version that can be
|
||||
used inside a string constant for a C++ compiler. */
|
||||
extern string stresc(const string&str);
|
||||
extern std::string stresc(const std::string&str);
|
||||
|
||||
#endif /* IVL_target_H */
|
||||
|
||||
Reference in New Issue
Block a user