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.
This commit is contained in:
Avi Kivity
2017-04-17 22:35:41 +03:00
parent 1faef017e3
commit a7fe7aedbf

View File

@@ -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,