2010-11-12 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>

Removed SharedHandle::isNull(). Instead we added operator* and
	operator unspecified_bool_type. Removed use of WeakHandle and
	replaced with raw pointer.
This commit is contained in:
Tatsuhiro Tsujikawa 2010-11-12 12:48:48 +00:00
parent f6f5a7e5ee
commit 93e5dbed32
181 changed files with 911 additions and 876 deletions

View file

@ -250,7 +250,7 @@ void PeerSessionResourceTest::testCountOutstandingRequest()
PeerSessionResource res(1024, 1024*1024);
SharedHandle<MockBtMessageDispatcher> dispatcher
(new MockBtMessageDispatcher());
res.setBtMessageDispatcher(dispatcher);
res.setBtMessageDispatcher(dispatcher.get());
CPPUNIT_ASSERT_EQUAL((size_t)0, res.countOutstandingUpload());
}