[complement-svn] SF.net SVN: complement:[1949] trunk/complement/explore
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2008-07-25 06:34:08
|
Revision: 1949 http://complement.svn.sourceforge.net/complement/?rev=1949&view=rev Author: complement Date: 2008-07-25 06:34:06 +0000 (Fri, 25 Jul 2008) Log Message: ----------- fix STLport version; use type_traits from STLport type_traits in STLport was derived from this type_traits.h and has fresh modifications Modified Paths: -------------- trunk/complement/explore/include/misc/type_traits.h trunk/complement/explore/lib/misc/ChangeLog Modified: trunk/complement/explore/include/misc/type_traits.h =================================================================== --- trunk/complement/explore/include/misc/type_traits.h 2008-07-09 09:18:44 UTC (rev 1948) +++ trunk/complement/explore/include/misc/type_traits.h 2008-07-25 06:34:06 UTC (rev 1949) @@ -1,7 +1,7 @@ -// -*- C++ -*- Time-stamp: <07/12/02 19:55:42 ptr> +// -*- C++ -*- Time-stamp: <08/07/20 18:17:36 ptr> /* - * Copyright (c) 2007 + * Copyright (c) 2007, 2008 * Petr Ovtchenkov * * Licensed under the Academic Free License version 3.0 @@ -15,7 +15,7 @@ #include <config/feature.h> #endif -#if 1 /* !defined(STLPORT) */ /* || (_STLPORT_VERSION < 50200) */ +#if !defined(STLPORT) || (_STLPORT_VERSION < 0x520) // libstdc++ v3, timestamp 20050519 (3.4.4) has __type_traits, // libstdc++ v3, timestamp 20060306 (3.4.6) has __type_traits, Modified: trunk/complement/explore/lib/misc/ChangeLog =================================================================== --- trunk/complement/explore/lib/misc/ChangeLog 2008-07-09 09:18:44 UTC (rev 1948) +++ trunk/complement/explore/lib/misc/ChangeLog 2008-07-25 06:34:06 UTC (rev 1949) @@ -1,3 +1,9 @@ +2008-07-21 Petr Ovtchenkov <pt...@is...> + + * type_traits.h: fix STLport version; use type_traits + from STLport (it was derived from this type_traits.h and has + fresh modifications). + 2008-06-30 Petr Ovtchenkov <pt...@is...> * opts.h: free allocated objects; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |