mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +03:00
2008-03-09 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
type cleanup for allmost all remaining files.
This commit is contained in:
parent
ca3f6e57f3
commit
032c7c2808
278 changed files with 1489 additions and 1517 deletions
|
@ -123,7 +123,7 @@ public:
|
|||
class MockBtMessageFactory2 : public MockBtMessageFactory {
|
||||
public:
|
||||
virtual SharedHandle<BtMessage>
|
||||
createCancelMessage(int32_t index, int32_t begin, int32_t length) {
|
||||
createCancelMessage(size_t index, uint32_t begin, size_t length) {
|
||||
SharedHandle<MockBtMessage2> btMsg = new MockBtMessage2();
|
||||
btMsg->type = "cancel";
|
||||
return btMsg;
|
||||
|
@ -378,7 +378,7 @@ void DefaultBtMessageDispatcherTest::testIsSendingInProgress() {
|
|||
void DefaultBtMessageDispatcherTest::testCountOutstandingRequest() {
|
||||
RequestSlot slot(0, 0, MY_PIECE_LENGTH, 0);
|
||||
btMessageDispatcher->addOutstandingRequest(slot);
|
||||
CPPUNIT_ASSERT_EQUAL((int32_t)1, btMessageDispatcher->countOutstandingRequest());
|
||||
CPPUNIT_ASSERT_EQUAL((size_t)1, btMessageDispatcher->countOutstandingRequest());
|
||||
}
|
||||
|
||||
void DefaultBtMessageDispatcherTest::testIsOutstandingRequest() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue