Fix a compiler error with a missing member function return type

This commit is contained in:
Bill Somerville 2018-10-26 16:51:54 +01:00
parent e575cdd11b
commit baed81d057
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ struct worked_entry
// less then predidate for the Continent enum class
struct Continent_less
{
operator () (AD1CCty::Continent lhs, AD1CCty::Continent rhs) const
bool operator () (AD1CCty::Continent lhs, AD1CCty::Continent rhs) const
{
return static_cast<int> (lhs) < static_cast<int> (rhs);
}