File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -118,15 +118,15 @@ namespace JSON
118118 void resize (size_type n) { binary_.resize (n); }
119119 void resize (size_type n, const value_type& val) { binary_.resize (n, val); }
120120
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
122122 {
123123 stream << " \" " ;
124124 encodeBase64 (stream, binary_);
125125 stream << " \" " ;
126126 return stream;
127127 }
128128
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)
130130 {
131131 std::string str = tree.tree .get <std::string>(name);
132132 decodeBase64 (str, binary_);
You can’t perform that action at this time.
0 commit comments