mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +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
|
@ -24,7 +24,7 @@ void FunctionTestProperty::startTest(void) const
|
|||
void FunctionTestProperty::processLine(const string &line) const
|
||||
|
||||
{
|
||||
if (regex_search(line,pattern))
|
||||
if (std::regex_search(line,pattern))
|
||||
count += 1;
|
||||
}
|
||||
|
||||
|
@ -42,7 +42,7 @@ void FunctionTestProperty::restoreXml(const Element *el)
|
|||
s1 >> minimumMatch;
|
||||
istringstream s2(el->getAttributeValue("max"));
|
||||
s2 >> maximumMatch;
|
||||
pattern = regex(el->getContent());
|
||||
pattern = std::regex(el->getContent());
|
||||
}
|
||||
|
||||
void ConsoleCommands::readLine(string &line)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue