Enabling -Wextra-semi [#CLICKHOUSE-2]

This commit is contained in:
Alexey Milovidov 2018-08-26 03:52:58 +03:00
parent fa6e364f68
commit 0ae34550db
3 changed files with 4 additions and 4 deletions

View File

@ -768,4 +768,4 @@ public:
}
};
};
}

View File

@ -1547,5 +1547,4 @@ private:
const ExternalDictionaries & dictionaries;
};
};
}

View File

@ -47,7 +47,8 @@ template <bool>
UInt8 xor_or_identity(const UInt8 c, const int mask)
{
return c ^ mask;
};
}
template <>
inline UInt8 xor_or_identity<false>(const UInt8 c, const int)
{