From 34642a41b41b19c929ef7e8147fefb4e470e5f4f Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Fri, 16 Jan 2015 12:22:24 +0200 Subject: [PATCH] cql3: Make column_specification non-final It's inherited by the config.ColumnDefinition class. Signed-off-by: Pekka Enberg --- cql3/column_specification.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cql3/column_specification.hh b/cql3/column_specification.hh index 5de6e66bb0..4a7849ae55 100644 --- a/cql3/column_specification.hh +++ b/cql3/column_specification.hh @@ -31,7 +31,7 @@ namespace cql3 { -class column_specification final { +class column_specification { public: const sstring ks_name; const sstring cf_name;