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 2008/12/04 23:02:41 UTC

svn commit: r723464 - /stdcxx/branches/4.2.x/include/streambuf

Author: sebor
Date: Thu Dec  4 14:02:40 2008
New Revision: 723464

URL: http://svn.apache.org/viewvc?rev=723464&view=rev
Log:
2008-12-04  Martin Sebor  <se...@apache.org>

	STDCXX-998
	* include/streambuf (basic_streambuf): Added empty exception
	specification to class ctor. The corresponding change to the
	function definition was accidentally committed in rev 723461.

Modified:
    stdcxx/branches/4.2.x/include/streambuf

Modified: stdcxx/branches/4.2.x/include/streambuf
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/include/streambuf?rev=723464&r1=723463&r2=723464&view=diff
==============================================================================
--- stdcxx/branches/4.2.x/include/streambuf (original)
+++ stdcxx/branches/4.2.x/include/streambuf Thu Dec  4 14:02:40 2008
@@ -159,7 +159,8 @@
 protected:
 
     // 27.5.2.1, p1: default mode argument is a convenience extension
-    basic_streambuf (ios_base::openmode = ios_base::in | ios_base::out);
+    basic_streambuf (ios_base::openmode = ios_base::in | ios_base::out)
+        _THROWS (());
 
     // 27.5.2.3.1, p1
     char_type* eback () const {