From d82b8c9d0eb95faf3ac690d66e7b69a47f024518 Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Mon, 17 Mar 2014 14:56:42 +0000 Subject: [PATCH] Empty global function for library test --- lib/Global.cpp | 5 ++++- lib/Global.hpp | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/Global.cpp b/lib/Global.cpp index e5280a7..2b47679 100644 --- a/lib/Global.cpp +++ b/lib/Global.cpp @@ -27,4 +27,7 @@ const string Env::fullName = PACKAGE_STRING; const string Env::name = PACKAGE_NAME; const string Env::version = PACKAGE_VERSION; const string Env::msgPrefix = "[" + strFrom(PACKAGE_NAME) + " v" - + strFrom(PACKAGE_VERSION) + "] "; \ No newline at end of file + + strFrom(PACKAGE_VERSION) + "] "; + +void Env::function(void) +{} diff --git a/lib/Global.hpp b/lib/Global.hpp index ca9f324..1f7b948 100644 --- a/lib/Global.hpp +++ b/lib/Global.hpp @@ -141,6 +141,8 @@ namespace Env extern const std::string name; extern const std::string version; extern const std::string msgPrefix; + // empty function for library test + void function(void); } // String conversions //////////////////////////////////////////////////////////