Author: faridz
Date: Fri Oct 26 07:29:09 2007
New Revision: 588659
URL: http://svn.apache.org/viewvc?rev=588659&view=rev
Log:
2007-10-26 Farid Zaripov <[EMAIL PROTECTED]>
* ios_bits.cpp [_MSC_VER > 1300]: Remove unnecessary
conditional compilation directive.
Modified:
incubator/stdcxx/branches/4.2.x/src/ios_bits.cpp
Modified: incubator/stdcxx/branches/4.2.x/src/ios_bits.cpp
URL:
http://svn.apache.org/viewvc/incubator/stdcxx/branches/4.2.x/src/ios_bits.cpp?rev=588659&r1=588658&r2=588659&view=diff
==============================================================================
--- incubator/stdcxx/branches/4.2.x/src/ios_bits.cpp (original)
+++ incubator/stdcxx/branches/4.2.x/src/ios_bits.cpp Fri Oct 26 07:29:09 2007
@@ -81,13 +81,13 @@
_RWSTD_DEFINE_STATIC_CONST (const ios_base::openmode ios_base::trunc);
_RWSTD_DEFINE_STATIC_CONST (const ios_base::openmode ios_base::ate);
-#if !defined (_MSC_VER) || (_MSC_VER <= 1300)
+//#if !defined (_MSC_VER) || (_MSC_VER <= 1300)
_RWSTD_DEFINE_STATIC_CONST (const ios_base::seekdir ios_base::beg);
_RWSTD_DEFINE_STATIC_CONST (const ios_base::seekdir ios_base::cur);
_RWSTD_DEFINE_STATIC_CONST (const ios_base::seekdir ios_base::end);
-#endif // !defined (_MSC_VER) || (_MSC_VER <= 1300)
+//#endif // !defined (_MSC_VER) || (_MSC_VER <= 1300)
#ifndef _RWSTD_STRICT_ANSI