Make FIXME throws uniquely identifiable

pull/1261/head
Stephen Shelton 4 years ago
parent 839fb42ba4
commit fd145d6eeb
No known key found for this signature in database
GPG Key ID: EE4BADACCE8B631C

@ -152,13 +152,13 @@ namespace llarp
IpAddress
AddressInfo::toIpAddress() const
{
throw std::runtime_error("FIXME");
throw std::runtime_error("FIXME - AddressInfo::toIpAddress()");
}
void
AddressInfo::fromIpAddress(const IpAddress& address)
{
throw std::runtime_error("FIXME");
throw std::runtime_error("FIXME - AddressInfo::fromIpAddress()");
}
std::ostream&

@ -80,7 +80,7 @@ namespace llarp
bool
IpAddress::isIPv4()
{
throw std::runtime_error("FIXME");
throw std::runtime_error("FIXME - IpAddress::isIPv4()");
}
bool
@ -117,13 +117,13 @@ namespace llarp
bool
IpAddress::operator<(const IpAddress& other) const
{
throw std::runtime_error("FIXME");
throw std::runtime_error("FIXME - IpAddress::operator<()");
}
bool
IpAddress::operator==(const IpAddress& other) const
{
throw std::runtime_error("FIXME");
throw std::runtime_error("FIXME - IpAddress::operator==()");
}
std::ostream&

@ -261,7 +261,7 @@ namespace llarp
std::ostream&
operator<<(std::ostream& out, const SockAddr& address)
{
throw std::runtime_error("FIXME");
throw std::runtime_error("FIXME - SockAddr operator<<()");
}
} // namespace llarp

Loading…
Cancel
Save