Revision: 1133
http://loki-lib.svn.sourceforge.net/loki-lib/?rev=1133&view=rev
Author: rich_sposato
Date: 2011-10-03 05:03:10 +0000 (Mon, 03 Oct 2011)
Log Message:
-----------
Added void lines to remove compiler warnings.
Modified Paths:
--------------
trunk/test/Singleton/Phoenix.cpp
Modified: trunk/test/Singleton/Phoenix.cpp
===================================================================
--- trunk/test/Singleton/Phoenix.cpp 2011-10-03 05:01:16 UTC (rev 1132)
+++ trunk/test/Singleton/Phoenix.cpp 2011-10-03 05:03:10 UTC (rev 1133)
@@ -81,6 +81,9 @@
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.");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|