File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -118,15 +118,15 @@ namespace JSON
118
118
void resize (size_type n) { binary_.resize (n); }
119
119
void resize (size_type n, const value_type& val) { binary_.resize (n, val); }
120
120
121
- std::ostream& stringify (std::ostream& stream, StringificationOptions const & options = DEFAULT_OPTIONS) const
121
+ std::ostream& stringify (std::ostream& stream, StringificationOptions const & = DEFAULT_OPTIONS) const
122
122
{
123
123
stream << " \" " ;
124
124
encodeBase64 (stream, binary_);
125
125
stream << " \" " ;
126
126
return stream;
127
127
}
128
128
129
- void parse (std::string const & name, PropertyTree const & tree, ParsingOptions const & options = DEFAULT_PARSER_OPTIONS)
129
+ void parse (std::string const & name, PropertyTree const & tree, ParsingOptions const & = DEFAULT_PARSER_OPTIONS)
130
130
{
131
131
std::string str = tree.tree .get <std::string>(name);
132
132
decodeBase64 (str, binary_);
You can’t perform that action at this time.
0 commit comments