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 @@ -62,7 +62,7 @@ class EXIV2API Xmpdatum : public Metadatum {
6262 @brief Assign a boolean \em value to the %Xmpdatum.
6363 Translates the value to a string "true" or "false".
6464 */
65- Xmpdatum& operator =(const bool & value);
65+ Xmpdatum& operator =(bool value);
6666 /* !
6767 @brief Assign a \em value of any type with an output operator
6868 to the %Xmpdatum. Calls operator=(const std::string&).
@@ -399,7 +399,7 @@ class EXIV2API XmpParser {
399399// *****************************************************************************
400400// free functions, template and inline definitions
401401
402- inline Xmpdatum& Xmpdatum::operator =(const bool & value) {
402+ inline Xmpdatum& Xmpdatum::operator =(bool value) {
403403 return operator =(value ? " True" : " False" );
404404}
405405
You can’t perform that action at this time.
0 commit comments