Remove global "using namespace std;" declarations, use "std::" prefixes on all std elements

Fix whitespace changes
This commit is contained in:
Michael Sundqvist
2022-07-31 22:14:38 +02:00
committed by Martin Natano
parent f0680a29fc
commit 0cba3579de
534 changed files with 3456 additions and 3488 deletions
+3 -3
View File
@@ -52,9 +52,9 @@ public:
void SetValueFromStack( lua_State *L );
};
typedef map<RString,XNodeValue*> XAttrs;
typedef std::map<RString,XNodeValue*> XAttrs;
class XNode;
typedef vector<XNode*> XNodes;
typedef std::vector<XNode*> XNodes;
/** @brief Loop through each node. */
#define FOREACH_Attr( pNode, Var ) \
for( XAttrs::iterator Var = (pNode)->m_attrs.begin(); \
@@ -84,7 +84,7 @@ class XNode
{
private:
XNodes m_childs; // child nodes
multimap<RString, XNode*> m_children_by_name;
std::multimap<RString, XNode*> m_children_by_name;
public:
RString m_sName;