From 1c7320e2a9829d2573127c397537558f25d1fbe7 Mon Sep 17 00:00:00 2001 From: mat007 Date: Sun, 22 Jul 2012 07:05:10 +0000 Subject: [PATCH] Refactoring git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@492 860be788-9bd5-4423-9f1e-828f051e677b --- turtle/detail/function_impl_template.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/turtle/detail/function_impl_template.hpp b/turtle/detail/function_impl_template.hpp index b66e6e4..2736df1 100644 --- a/turtle/detail/function_impl_template.hpp +++ b/turtle/detail/function_impl_template.hpp @@ -14,9 +14,9 @@ #define MOCK_CONTEXT \ boost::unit_test::lazy_ostream::instance() \ << lazy_context( this ) \ - << "(" BOOST_PP_REPEAT(MOCK_NUM_ARGS, MOCK_FORMAT, \ + << '(' BOOST_PP_REPEAT(MOCK_NUM_ARGS, MOCK_FORMAT, \ BOOST_PP_DEC(MOCK_NUM_ARGS)) \ - << ")" \ + << ')' \ << lazy_expectations( this ) namespace mock @@ -146,7 +146,7 @@ namespace detail if( c.impl_->context_ ) c.impl_->context_->serialize( s, *c.impl_ ); else - s << "?"; + s << '?'; return s; } const function_impl* impl_;