Added void lines to remove compiler warnings.

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@1133 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
rich_sposato 2011-10-03 05:03:10 +00:00
parent 6b42268ba9
commit 6568cc4a3a

View file

@ -81,6 +81,9 @@ public:
int main(int argc, char* argv[])
{
(void)argc;
(void)argv;
Example *example = new Example();
SetLongevity<Example, void (*)(Example*)>(example, 1, &Loki::Private::Deleter<Example>::Delete);
LogBook::Instance().echo("LogClass now instantiated.");