1
0
Fork 0

fixed typo Endpoint::DOMAIN_IPV4

This commit is contained in:
Kaveh Vahedipour 2016-03-31 11:43:39 +00:00
parent d42cd412a8
commit 7c7ab6fca9
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ EndpointIp::EndpointIp(DomainType domainType, EndpointType type,
_port(port),
_reuseAddress(reuseAddress) {
TRI_ASSERT(domainType == Endpoint::DomainType::IPV4 ||
domainType == Endpoint::DomainType::IPV4);
domainType == Endpoint::DomainType::IPV6);
}
////////////////////////////////////////////////////////////////////////////////