From e1fa4a088dd95caef22045f905a9d5d22b71bef0 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Tue, 24 Jan 2017 21:50:39 -0500 Subject: Whitespace changes --- lib/database.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'lib/database.cpp') diff --git a/lib/database.cpp b/lib/database.cpp index 351b93d..fb00ef3 100644 --- a/lib/database.cpp +++ b/lib/database.cpp @@ -40,37 +40,37 @@ namespace verbly { { sqlite3_close_v2(ppdb_); } - + query database::notions(filter where, bool random, int limit) const { return query(*this, ppdb_, std::move(where), random, limit); } - + query database::words(filter where, bool random, int limit) const { return query(*this, ppdb_, std::move(where), random, limit); } - + query database::groups(filter where, bool random, int limit) const { return query(*this, ppdb_, std::move(where), random, limit); } - + query database::frames(filter where, bool random, int limit) const { return query(*this, ppdb_, std::move(where), random, limit); } - + query database::lemmas(filter where, bool random, int limit) const { return query(*this, ppdb_, std::move(where), random, limit); } - + query
database::forms(filter where, bool random, int limit) const { return query(*this, ppdb_, std::move(where), random, limit); } - + query database::pronunciations(filter where, bool random, int limit) const { return query(*this, ppdb_, std::move(where), random, limit); -- cgit 1.4.1