You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2007/09/22 00:14:36 UTC

svn commit: r578287 - /incubator/stdcxx/trunk/include/complex

Author: sebor
Date: Fri Sep 21 15:14:27 2007
New Revision: 578287

URL: http://svn.apache.org/viewvc?rev=578287&view=rev
Log:
2007-09-21  Martin Sebor  <se...@roguewave.com>

	STDCXX-570
	* complex (pow): Removed inline keyword from the declaration
	of a function template outlined in revision 545847 while fixing
	STDCXX-447.

Modified:
    incubator/stdcxx/trunk/include/complex

Modified: incubator/stdcxx/trunk/include/complex
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/include/complex?rev=578287&r1=578286&r2=578287&view=diff
==============================================================================
--- incubator/stdcxx/trunk/include/complex (original)
+++ incubator/stdcxx/trunk/include/complex Fri Sep 21 15:14:27 2007
@@ -23,7 +23,7 @@
  * implied.   See  the License  for  the  specific language  governing
  * permissions and limitations under the License.
  *
- * Copyright 2000-2006 Rogue Wave Software.
+ * Copyright 2000-2007 Rogue Wave Software, Inc.
  * 
  **************************************************************************/
 
@@ -776,7 +776,7 @@
 //     phi = v2 * log(r1) + u2 * theta1
 _EXPORT
 template <class _TypeT>
-inline complex<_TypeT>
+complex<_TypeT>
 pow (const complex<_TypeT>&, const complex<_TypeT>&);