mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-25 05:25:55 +00:00
Build fixes
This commit is contained in:
@@ -44,16 +44,16 @@ HTTPVersion& HTTPVersion::operator= (HTTPVersion const& other)
|
||||
|
||||
String HTTPVersion::toString () const
|
||||
{
|
||||
return String::fromNumber (major ()) + "." +
|
||||
String::fromNumber (minor ());
|
||||
return String::fromNumber (vmajor ()) + "." +
|
||||
String::fromNumber (vminor ());
|
||||
}
|
||||
|
||||
unsigned short HTTPVersion::major () const
|
||||
unsigned short HTTPVersion::vmajor () const
|
||||
{
|
||||
return m_major;
|
||||
}
|
||||
|
||||
unsigned short HTTPVersion::minor () const
|
||||
unsigned short HTTPVersion::vminor () const
|
||||
{
|
||||
return m_minor;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user