Skip to content

Commit

Permalink
Removed ; in custom_data_types.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Peguen committed Aug 19, 2024
1 parent aeb2f05 commit de46bed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ecal/core/src/types/ecal_custom_data_types.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ namespace eCAL
throw std::invalid_argument("[IpAddressV4] No valid IP address: " + ip_address_);
}

std::string IpAddressV4::Get() const { return m_ip_address; };
IpAddressV4& IpAddressV4::operator=(const std::string& ip_string_) { this->validateIpString(ip_string_); return *this; };
IpAddressV4& IpAddressV4::operator=(const char* ip_string_) { this->validateIpString(ip_string_); return *this; };
IpAddressV4::operator std::string() const { return m_ip_address; };
std::string IpAddressV4::Get() const { return m_ip_address; }
IpAddressV4& IpAddressV4::operator=(const std::string& ip_string_) { this->validateIpString(ip_string_); return *this; }
IpAddressV4& IpAddressV4::operator=(const char* ip_string_) { this->validateIpString(ip_string_); return *this; }
IpAddressV4::operator std::string() const { return m_ip_address; }

std::ostream& operator<<(std::ostream& os, const IpAddressV4& ipv4) { os << ipv4.Get(); return os; }

Expand Down

0 comments on commit de46bed

Please sign in to comment.