Fixed warnings on clang [#METR-2944].

This commit is contained in:
Alexey Milovidov 2016-08-07 19:17:57 +03:00
parent f93babdd4d
commit f129e94429
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
namespace DB
{
class ASTTablesInSelectQueryElement;
struct ASTTablesInSelectQueryElement;
/** SELECT query

View File

@ -1,5 +1,5 @@
/// Совместимость с clang, в котором std::numeric_limits (из libstdc++ из gcc) почему-то не специализируется для __uint128_t.
#if __clang__
#if __clang__ && __clang_major__ < 4
#include <limits>
namespace std