From: <ag...@us...> - 2012-01-30 12:14:53
|
Revision: 2698 http://zoolib.svn.sourceforge.net/zoolib/?rev=2698&view=rev Author: agreen Date: 2012-01-30 12:14:44 +0000 (Mon, 30 Jan 2012) Log Message: ----------- Updated noreturn. Don't need the message from ZDebugStop. Modified Paths: -------------- trunk/zoolib/source/cxx/zoolib/ZDebug.cpp trunk/zoolib/source/cxx/zoolib/ZDebug.h Modified: trunk/zoolib/source/cxx/zoolib/ZDebug.cpp =================================================================== --- trunk/zoolib/source/cxx/zoolib/ZDebug.cpp 2012-01-30 12:14:10 UTC (rev 2697) +++ trunk/zoolib/source/cxx/zoolib/ZDebug.cpp 2012-01-30 12:14:44 UTC (rev 2698) @@ -289,7 +289,7 @@ void ZUnimplemented() { - ZDebugStopf(0, ("Unimplemented routine")); + ZDebugStop(0); abort(); } Modified: trunk/zoolib/source/cxx/zoolib/ZDebug.h =================================================================== --- trunk/zoolib/source/cxx/zoolib/ZDebug.h 2012-01-30 12:14:10 UTC (rev 2697) +++ trunk/zoolib/source/cxx/zoolib/ZDebug.h 2012-01-30 12:14:44 UTC (rev 2698) @@ -109,7 +109,9 @@ namespace ZooLib { -void ZUnimplemented() ZMACRO_Attribute_NoReturn; +ZMACRO_NoReturn_Pre +void ZUnimplemented() +ZMACRO_NoReturn_Post; } // namespace ZooLib This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |