prefer c++11 alias type declaration over typedef for consistency

This commit is contained in:
artemp 2015-04-13 15:03:19 +02:00
parent 41aa591878
commit 87e978a6b9

View file

@ -57,7 +57,7 @@ struct unicode_string : qi::grammar<Iterator, std::string()>
struct push_utf8
{
typedef void result_type;
using result_type = void;
void operator()(std::string& utf8, uchar code_point) const
{
@ -70,7 +70,7 @@ struct push_utf8
struct push_esc
{
typedef void result_type;
using result_type = void;
void operator()(std::string& utf8, uchar c) const
{