Fixed constructor example

This commit is contained in:
Mathieu Champlon 2015-03-30 06:45:01 +02:00
parent f4efa9b02e
commit d633f916dd

View file

@ -321,7 +321,7 @@ template< typename T >
MOCK_CLASS( mock_class ) MOCK_CLASS( mock_class )
{ {
MOCK_CONSTRUCTOR( mock_class, 2, ( int, const std::string& ), identifier ) MOCK_CONSTRUCTOR( mock_class, 2, ( int, const std::string& ), identifier )
MOCK_CONSTRUCTOR_TPL( mock_class, 2, ( T, const std::string& ), identifier ) MOCK_CONSTRUCTOR_TPL( mock_class, 2, ( T, const std::string& ), identifier_2 )
}; };
//] //]
} }