File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -612,7 +612,7 @@ class DescriptorImpl : public Descriptor
612
612
return AddChecksum (ret);
613
613
}
614
614
615
- bool ToPrivateString (const SigningProvider& arg, std::string& out) const final
615
+ bool ToPrivateString (const SigningProvider& arg, std::string& out) const override
616
616
{
617
617
bool ret = ToStringHelper (&arg, out, StringType::PRIVATE);
618
618
out = AddChecksum (out);
@@ -698,6 +698,7 @@ class AddressDescriptor final : public DescriptorImpl
698
698
return OutputTypeFromDestination (m_destination);
699
699
}
700
700
bool IsSingleType () const final { return true ; }
701
+ bool ToPrivateString (const SigningProvider& arg, std::string& out) const final { return false ; }
701
702
};
702
703
703
704
/* * A parsed raw(H) descriptor. */
@@ -718,6 +719,7 @@ class RawDescriptor final : public DescriptorImpl
718
719
return OutputTypeFromDestination (dest);
719
720
}
720
721
bool IsSingleType () const final { return true ; }
722
+ bool ToPrivateString (const SigningProvider& arg, std::string& out) const final { return false ; }
721
723
};
722
724
723
725
/* * A parsed pk(P) descriptor. */
You can’t perform that action at this time.
0 commit comments