From 575da2357368f283a5d9b450144df5c3733b2943 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Thu, 12 Dec 2019 21:40:46 +0300 Subject: [PATCH] Fixed build --- dbms/src/DataTypes/IDataType.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbms/src/DataTypes/IDataType.h b/dbms/src/DataTypes/IDataType.h index ce57171f98..73e9c1d78b 100644 --- a/dbms/src/DataTypes/IDataType.h +++ b/dbms/src/DataTypes/IDataType.h @@ -649,7 +649,7 @@ class DataTypeDateTime; class DataTypeDateTime64; template constexpr bool IsDataTypeDecimal> = true; -template <> constexpr bool IsDataTypeDecimal = true; +template <> inline constexpr bool IsDataTypeDecimal = true; template constexpr bool IsDataTypeNumber> = true; -- GitLab