Skip to content

Commit

Permalink
Merge pull request ceph#4614 from ceph/wip-11574-fix-FTBFS
Browse files Browse the repository at this point in the history
json_sprit: fix the FTBFS on old gcc

Reviewed-by: Greg Farnum <gfarnum@redhat.com>
  • Loading branch information
gregsfortytwo committed May 8, 2015
2 parents eb32123 + 6b68b27 commit 4a68b73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/json_spirit/json_spirit_reader_template.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ namespace json_spirit
template<>
std::string unicode_str_to_utf8( std::string::const_iterator & begin )
{
typedef typename std::string::value_type Char_type;
typedef std::string::value_type Char_type;

const Char_type c1( *( ++begin ) );
const Char_type c2( *( ++begin ) );
Expand Down

0 comments on commit 4a68b73

Please sign in to comment.