forked from boostorg/unordered
fixed trivial syntax error
This commit is contained in:
committed by
Christian Mazakas
parent
8b056b902e
commit
8f39001ff0
@ -1360,7 +1360,7 @@ protected:
|
||||
|
||||
float load_factor()const noexcept
|
||||
{
|
||||
if capacity()==0)return 0;
|
||||
if(capacity()==0)return 0;
|
||||
else return float(size())/float(capacity());
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user