I found this thread in google groups about issues found when building gmock-1.5.0 under VS2010. Following the thread, I've created a short readme file, which worked for me, so here it is:
Hope this helps,
Boaz
VS2010 compiler warnings from step 5 (see remarks at the end):
Warning 1 warning C4996:
'std::_Copy_impl': Function call with
parameters that may be unsafe - this
call relies on the caller to check
that the passed values are correct. To
disable this warning, use
-D_SCL_SECURE_NO_WARNINGS. See documentation on how to use Visual C++
'Checked Iterators' C:\Program Files
(x86)\Microsoft Visual Studio
10.0\VC\include\xutility 2227 1
Warning 2 warning C4996:
'std::_Copy_impl': Function call with
parameters that may be unsafe - this
call relies on the caller to check
that the passed values are correct. To
disable this warning, use
-D_SCL_SECURE_NO_WARNINGS. See documentation on how to use Visual C++
'Checked Iterators' C:\Program Files
(x86)\Microsoft Visual Studio
10.0\VC\include\xutility 2227 1
Warning 4 warning C4413:
'std::tr1::_Cons_node<_Car,_Cdr>::_Value'
: reference member is initialized to a
temporary that doesn't persist after
the constructor exits C:\Program Files
(x86)\Microsoft Visual Studio
10.0\VC\include\tuple 137 1
Warning 3 warning C4373:
'testing::gmock_generated_function_mockers_test::MockFoo::TakesConst':
virtual function overrides
'testing::gmock_generated_function_mockers_test::FooInterface::TakesConst',
previous versions of the compiler did
not override when parameters only
differed by const/volatile
qualifiers C:\Libs\gmock-1.5.0\test\gmock-generated-function-mockers_test.cc 133 1
Remarks regarding warnings:
- Warnings 1,2 are about Copy() in xutility being deprecated due to safty. As the mock library is not a part of the production release, this is OK by me.
- Warning 4 is OK according to the thread.
- Warning 3: not sure, but all seems to work well.