Fix explicit tuple constructor error on gcc-5

This commit is contained in:
Michael Jabbour 2020-12-03 10:18:11 +02:00
parent 5302adfdc7
commit fcf0047c35

View File

@ -61,7 +61,7 @@ protected:
std::tuple<std::string, std::string, std::string, std::string, std::string> as_tuple() const
{
return {urn_, scheme_, authority_, path_, identifier_ != "" ? identifier_ : pointer_};
return std::make_tuple(urn_, scheme_, authority_, path_, identifier_ != "" ? identifier_ : pointer_);
}
public: