2008-02-08 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

Removed "using namespace std;" from all sources. Appended std:: 
prefix to c++
	standard classes.
	Included string.h where mem* function are used.
This commit is contained in:
Tatsuhiro Tsujikawa 2008-02-08 15:53:45 +00:00
parent d82e183d34
commit 1b7c198289
801 changed files with 12024 additions and 8627 deletions

View file

@ -2,7 +2,7 @@
#include <string>
#include <cppunit/extensions/HelperMacros.h>
using namespace std;
namespace aria2 {
class OptionTest:public CppUnit::TestFixture {
@ -30,7 +30,7 @@ void OptionTest::testPutAndGet() {
op.put("key", "value");
CPPUNIT_ASSERT(op.defined("key"));
CPPUNIT_ASSERT_EQUAL(string("value"), op.get("key"));
CPPUNIT_ASSERT_EQUAL(std::string("value"), op.get("key"));
}
void OptionTest::testPutAndGetAsInt() {
@ -47,3 +47,5 @@ void OptionTest::testPutAndGetAsDouble() {
CPPUNIT_ASSERT_EQUAL(10.0, op.getAsDouble("key"));
}
} // namespace aria2