Renamed basic_error_policy to default_error_policy

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@410 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2012-02-07 22:35:40 +00:00
parent d1a7049505
commit e86aebb5a8
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ namespace mock
{};
template< typename Result >
struct basic_error_policy
struct default_error_policy
{
static Result abort()
{

View file

@ -16,7 +16,7 @@
# define MOCK_ERROR_POLICY boost_test_error_policy
# include "boost_test_error.hpp"
# else
# define MOCK_ERROR_POLICY basic_error_policy
# define MOCK_ERROR_POLICY default_error_policy
# include "default_error.hpp"
# endif
#endif