From c90064c2aebe793df953cd4431f229bacadb330e Mon Sep 17 00:00:00 2001 From: Shaquille Soekhlal Date: Tue, 21 May 2019 21:29:10 -0300 Subject: [PATCH] Removed dead code --- main.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/main.cpp b/main.cpp index 355ab54..aae0203 100644 --- a/main.cpp +++ b/main.cpp @@ -4,13 +4,6 @@ using namespace sqlite_orm; -static inline std::string getPath(){ - std::string filePath(__FILE__); - return filePath.substr( 0, filePath.length() - std::string("main.cpp").length()); -} - -static const std::string sqlitedb = getPath() + "/sqlite.db3"; - struct employee{ int id; std::string first_name;