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

@ -1,8 +1,10 @@
#include "BtNotInterestedMessage.h"
#include "PeerMessageUtil.h"
#include "Peer.h"
#include <cstring>
#include <cppunit/extensions/HelperMacros.h>
using namespace std;
namespace aria2 {
class BtNotInterestedMessageTest:public CppUnit::TestFixture {
@ -61,7 +63,7 @@ void BtNotInterestedMessageTest::testGetMessage() {
}
void BtNotInterestedMessageTest::testDoReceivedAction() {
PeerHandle peer = new Peer("host", 6969);
SharedHandle<Peer> peer = new Peer("host", 6969);
peer->peerInterested = true;
BtNotInterestedMessage msg;
msg.setPeer(peer);
@ -71,7 +73,7 @@ void BtNotInterestedMessageTest::testDoReceivedAction() {
}
void BtNotInterestedMessageTest::testOnSendComplete() {
PeerHandle peer = new Peer("host", 6969);
SharedHandle<Peer> peer = new Peer("host", 6969);
peer->amInterested = true;
BtNotInterestedMessage msg;
msg.setPeer(peer);
@ -82,5 +84,7 @@ void BtNotInterestedMessageTest::testOnSendComplete() {
void BtNotInterestedMessageTest::testToString() {
BtNotInterestedMessage msg;
CPPUNIT_ASSERT_EQUAL(string("not interested"), msg.toString());
CPPUNIT_ASSERT_EQUAL(std::string("not interested"), msg.toString());
}
} // namespace aria2