You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by fa...@apache.org on 2007/06/22 18:41:01 UTC

svn commit: r549871 - in /incubator/stdcxx/trunk: include/rw/_error.h src/exception.cpp

Author: faridz
Date: Fri Jun 22 09:41:00 2007
New Revision: 549871

URL: http://svn.apache.org/viewvc?view=rev&rev=549871
Log:
2007-06-22 Farid Zaripov <Fa...@epam.com>

	* _error.h(__rw_free_what_buf): Removed inline in declaration.
	* exception.cpp(__rw_free_what_buf): The same.

Modified:
    incubator/stdcxx/trunk/include/rw/_error.h
    incubator/stdcxx/trunk/src/exception.cpp

Modified: incubator/stdcxx/trunk/include/rw/_error.h
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/include/rw/_error.h?view=diff&rev=549871&r1=549870&r2=549871
==============================================================================
--- incubator/stdcxx/trunk/include/rw/_error.h (original)
+++ incubator/stdcxx/trunk/include/rw/_error.h Fri Jun 22 09:41:00 2007
@@ -40,7 +40,7 @@
 _RWSTD_EXPORT void __rw_throw (int, ...);
 
 // frees memory buffer used for what() message
-_RWSTD_EXPORT inline void __rw_free_what_buf (char*);
+_RWSTD_EXPORT void __rw_free_what_buf (char*);
 
 // throws an exception identified by first argument with the second
 // argument containing the exception object's what() string, which

Modified: incubator/stdcxx/trunk/src/exception.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/src/exception.cpp?view=diff&rev=549871&r1=549870&r2=549871
==============================================================================
--- incubator/stdcxx/trunk/src/exception.cpp (original)
+++ incubator/stdcxx/trunk/src/exception.cpp Fri Jun 22 09:41:00 2007
@@ -439,7 +439,7 @@
 __rw_what_refcnt;
 
 // free memory buffer allocated in __rw_vfmtwhat()
-_RWSTD_EXPORT inline void __rw_free_what_buf (char* buf)
+_RWSTD_EXPORT void __rw_free_what_buf (char* buf)
 {
     if (__rw_what_buf == buf) {
         _RWSTD_ASSERT (0 < __rw_what_refcnt);