toft
toft copied to clipboard
C++ Base Library for serverside development
erase(front()); ==> erase(&front()); erase(back()); ==> erase(&back()); should be: # diff --git a/base/intrusive_list.h b/base/intrusive_list.h index 4ca2944..522ca2b 100644 --- a/base/intrusive_list.h +++ b/base/intrusive_list.h @@ -243,12 +243,12 @@ public: void pop_front() { assert(!empty()); -...
Can not run thirdparty/protobuf/bin/protoc on ubuntu, I downloaded google-libs-1.0.5 from https://code.google.com/p/typhoon-blade/downloads/list
in toft/base/string/number_test.cpp TEST(StringNumber, StringToNumber) i add a line ASSERT_TRUE(StringToNumber("009", &i64)); then the test is fail. so the methed StringToNumber have bug
请问一下,我看到代码中有thirdparty的引用,但是整个项目没有thirdparty目录呀