Removed all 'using namespace std' occurrences

This commit is contained in:
Emmanuel Durand
2020-12-07 12:18:33 -05:00
parent 1e5f617a2a
commit 9775eb3f9a
80 changed files with 1615 additions and 1729 deletions
+1 -2
View File
@@ -2,7 +2,6 @@
#include "./core/attribute.h"
using namespace std;
using namespace Splash;
/*************/
@@ -74,5 +73,5 @@ TEST_CASE("Testing Attribute constructors")
CHECK_FALSE(attr.hasGetter());
CHECK(attr.isDefault());
attr({"Flying machine"});
CHECK_EQ(attr()[0].as<string>(), "Flying machine");
CHECK_EQ(attr()[0].as<std::string>(), "Flying machine");
}