From a7fe7aedbf928fe8a89de0a0f3bc4ddb2f82300b Mon Sep 17 00:00:00 2001 From: Avi Kivity Date: Mon, 17 Apr 2017 22:35:41 +0300 Subject: [PATCH] cql_type: fix bad enum syntax on clang cql3::type used some gcc extension that is not recognized on clang; use the standard syntax instead. --- cql3/cql3_type.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cql3/cql3_type.cc b/cql3/cql3_type.cc index ba71023b63..77516e971d 100644 --- a/cql3/cql3_type.cc +++ b/cql3/cql3_type.cc @@ -298,7 +298,7 @@ cql3_type::values() { cql3_type::decimal, cql3_type::double_, cql3_type::float_, - cql3_type:inet, + cql3_type::inet, cql3_type::int_, cql3_type::smallint, cql3_type::text,