From 86355a54a582e2c4ec19ef6083c3ddcba8be647b Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Mon, 23 Feb 2015 14:30:19 +0200 Subject: [PATCH] db: Remove column_family stub There's a proper column_family in database.hh now. Remove a stub that was introduced during the initial conversion. Signed-off-by: Pekka Enberg --- db/column_family.hh | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 db/column_family.hh diff --git a/db/column_family.hh b/db/column_family.hh deleted file mode 100644 index 8af38116e5..0000000000 --- a/db/column_family.hh +++ /dev/null @@ -1,12 +0,0 @@ -#ifndef DB_COLUMN_FAMILY_HH -#define DB_COLUMN_FAMILY_HH - -namespace db { - -class column_family { - // FIXME: stub -}; - -} - -#endif