| commit | d9526499d6ab53b7d13d1434f748f6f2161c2e0a | [log] [tgz] |
|---|---|---|
| author | Sebastien Gonzalve <oznog@zarb.org> | Thu Feb 20 22:28:03 2014 +0100 |
| committer | David Wagner <david.wagner@intel.com> | Thu Sep 11 14:25:02 2014 +0200 |
| tree | 8d2e2db275800821d4bf8873fc16b686bca60b2d | |
| parent | ffbf43b383bb8693741430b02c24dbc9b127f7f7 [diff] [blame] |
Remove using std::XXX from headers This is a bad practice to have using in headers because it pollutes the namespace of any user of that header.
diff --git a/xmlserializer/XmlDocSource.cpp b/xmlserializer/XmlDocSource.cpp index 5e53a81..35a8f4e 100644 --- a/xmlserializer/XmlDocSource.cpp +++ b/xmlserializer/XmlDocSource.cpp
@@ -33,6 +33,8 @@ #include <libxml/xmlschemas.h> #include <stdlib.h> +using std::string; + // Schedule for libxml2 library bool CXmlDocSource::_bLibXml2CleanupScheduled;