dbms: fixed build with in-tree sparsehash [#METR-17973].

This commit is contained in:
Alexey Milovidov 2016-02-05 05:19:46 +03:00
parent 9590002294
commit 0e906e32a7

View File

@ -51,7 +51,7 @@ _START_GOOGLE_NAMESPACE_
template <bool> struct SparsehashCompileAssert { };
#define SPARSEHASH_COMPILE_ASSERT(expr, msg) \
typedef SparsehashCompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1]
static_assert(expr, msg)
namespace sparsehash_internal {