Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move inline to declaration #2480

Merged
merged 1 commit into from
Jan 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/exiv2/xmp_exiv2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class EXIV2API Xmpdatum : public Metadatum {
@brief Assign a boolean \em value to the %Xmpdatum.
Translates the value to a string "true" or "false".
*/
Xmpdatum& operator=(bool value);
inline Xmpdatum& operator=(bool value);
/*!
@brief Assign a \em value of any type with an output operator
to the %Xmpdatum. Calls operator=(const std::string&).
Expand Down Expand Up @@ -398,7 +398,7 @@ class EXIV2API XmpParser {
// *****************************************************************************
// free functions, template and inline definitions

inline Xmpdatum& Xmpdatum::operator=(bool value) {
Xmpdatum& Xmpdatum::operator=(bool value) {
return operator=(value ? "True" : "False");
}

Expand Down