Makes gtest wokr on MinGW (by Vlad Losev); removes unused linked_ptr::release() method (by Zhanyong Wan).

This commit is contained in:
zhanyong.wan
2010-10-11 06:28:54 +00:00
parent 9c48242258
commit c18438ca29
5 changed files with 65 additions and 58 deletions

View File

@@ -994,7 +994,7 @@ TEST(AutoHandleTest, AutoHandleWorks) {
typedef unsigned __int64 BiggestParsable;
typedef signed __int64 BiggestSignedParsable;
const BiggestParsable kBiggestParsableMax = ULLONG_MAX;
const BiggestParsable kBiggestSignedParsableMax = LLONG_MAX;
const BiggestSignedParsable kBiggestSignedParsableMax = LLONG_MAX;
#else
typedef unsigned long long BiggestParsable;
typedef signed long long BiggestSignedParsable;