mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
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:
parent
d82e183d34
commit
1b7c198289
801 changed files with 12024 additions and 8627 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue