public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/13884] New: Protect sstream.tcc from extern template use
@ 2004-01-27 11:32 grigory dot zagorodnev at intel dot com
  2004-01-27 11:41 ` [Bug libstdc++/13884] " pcarlini at suse dot de
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: grigory dot zagorodnev at intel dot com @ 2004-01-27 11:32 UTC (permalink / raw)
  To: gcc-bugs

A guarding preprocessor condition is missing in file "include/bits/sstream.tcc"
to disbale extern template feature use. It is expected to see the following:

#if _GLIBCPP_EXTERN_TEMPLATE
  extern template class basic_stringbuf<char>;
  extern template class basic_istringstream<char>;
  ...
#endif

-- 
           Summary: Protect sstream.tcc from extern template use
           Product: gcc
           Version: 3.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libstdc++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: grigory dot zagorodnev at intel dot com
                CC: gcc-bugs at gcc dot gnu dot org
  GCC host triplet: i686-redhat-linux


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13884


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libstdc++/13884] Protect sstream.tcc from extern template use
  2004-01-27 11:32 [Bug libstdc++/13884] New: Protect sstream.tcc from extern template use grigory dot zagorodnev at intel dot com
@ 2004-01-27 11:41 ` pcarlini at suse dot de
  2004-01-27 11:51 ` pcarlini at suse dot de
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pcarlini at suse dot de @ 2004-01-27 11:41 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |pcarlini at suse dot de
                   |dot org                     |
             Status|UNCONFIRMED                 |ASSIGNED
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2004-01-27 11:41:17
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13884


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libstdc++/13884] Protect sstream.tcc from extern template use
  2004-01-27 11:32 [Bug libstdc++/13884] New: Protect sstream.tcc from extern template use grigory dot zagorodnev at intel dot com
  2004-01-27 11:41 ` [Bug libstdc++/13884] " pcarlini at suse dot de
@ 2004-01-27 11:51 ` pcarlini at suse dot de
  2004-01-27 12:37 ` cvs-commit at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: pcarlini at suse dot de @ 2004-01-27 11:51 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |3.3.3


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13884


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libstdc++/13884] Protect sstream.tcc from extern template use
  2004-01-27 11:32 [Bug libstdc++/13884] New: Protect sstream.tcc from extern template use grigory dot zagorodnev at intel dot com
  2004-01-27 11:41 ` [Bug libstdc++/13884] " pcarlini at suse dot de
  2004-01-27 11:51 ` pcarlini at suse dot de
@ 2004-01-27 12:37 ` cvs-commit at gcc dot gnu dot org
  2004-01-27 12:39 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-01-27 12:37 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-01-27 12:37 -------
Subject: Bug 13884

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	paolo@gcc.gnu.org	2004-01-27 12:37:38

Modified files:
	libstdc++-v3   : ChangeLog 
	libstdc++-v3/include/bits: sstream.tcc 

Log message:
	2004-01-27  Paolo Carlini  <pcarlini@suse.de>
	
	PR libstdc++/13884
	* include/bits/sstream.tcc: Guard use of extern template.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&r1=1.2257&r2=1.2258
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/sstream.tcc.diff?cvsroot=gcc&r1=1.37&r2=1.38



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13884


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libstdc++/13884] Protect sstream.tcc from extern template use
  2004-01-27 11:32 [Bug libstdc++/13884] New: Protect sstream.tcc from extern template use grigory dot zagorodnev at intel dot com
                   ` (2 preceding siblings ...)
  2004-01-27 12:37 ` cvs-commit at gcc dot gnu dot org
@ 2004-01-27 12:39 ` cvs-commit at gcc dot gnu dot org
  2004-01-27 12:40 ` cvs-commit at gcc dot gnu dot org
  2004-01-27 12:42 ` pcarlini at suse dot de
  5 siblings, 0 replies; 7+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-01-27 12:39 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-01-27 12:39 -------
Subject: Bug 13884

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_4-branch
Changes by:	paolo@gcc.gnu.org	2004-01-27 12:39:40

Modified files:
	libstdc++-v3   : ChangeLog 
	libstdc++-v3/include/bits: sstream.tcc 

Log message:
	2004-01-27  Paolo Carlini  <pcarlini@suse.de>
	
	PR libstdc++/13884
	* include/bits/sstream.tcc: Guard use of extern template.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.2224.2.9&r2=1.2224.2.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/sstream.tcc.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.37&r2=1.37.4.1



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13884


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libstdc++/13884] Protect sstream.tcc from extern template use
  2004-01-27 11:32 [Bug libstdc++/13884] New: Protect sstream.tcc from extern template use grigory dot zagorodnev at intel dot com
                   ` (3 preceding siblings ...)
  2004-01-27 12:39 ` cvs-commit at gcc dot gnu dot org
@ 2004-01-27 12:40 ` cvs-commit at gcc dot gnu dot org
  2004-01-27 12:42 ` pcarlini at suse dot de
  5 siblings, 0 replies; 7+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-01-27 12:40 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-01-27 12:40 -------
Subject: Bug 13884

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_3-branch
Changes by:	paolo@gcc.gnu.org	2004-01-27 12:40:26

Modified files:
	libstdc++-v3   : ChangeLog 
	libstdc++-v3/include/bits: sstream.tcc 

Log message:
	2004-01-27  Paolo Carlini  <pcarlini@suse.de>
	
	PR libstdc++/13884
	* include/bits/sstream.tcc: Guard use of extern template.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.1464.2.171&r2=1.1464.2.172
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/sstream.tcc.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.13&r2=1.13.4.1



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13884


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libstdc++/13884] Protect sstream.tcc from extern template use
  2004-01-27 11:32 [Bug libstdc++/13884] New: Protect sstream.tcc from extern template use grigory dot zagorodnev at intel dot com
                   ` (4 preceding siblings ...)
  2004-01-27 12:40 ` cvs-commit at gcc dot gnu dot org
@ 2004-01-27 12:42 ` pcarlini at suse dot de
  5 siblings, 0 replies; 7+ messages in thread
From: pcarlini at suse dot de @ 2004-01-27 12:42 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pcarlini at suse dot de  2004-01-27 12:42 -------
Fixed for 3.3.3.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13884


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2004-01-27 12:42 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-01-27 11:32 [Bug libstdc++/13884] New: Protect sstream.tcc from extern template use grigory dot zagorodnev at intel dot com
2004-01-27 11:41 ` [Bug libstdc++/13884] " pcarlini at suse dot de
2004-01-27 11:51 ` pcarlini at suse dot de
2004-01-27 12:37 ` cvs-commit at gcc dot gnu dot org
2004-01-27 12:39 ` cvs-commit at gcc dot gnu dot org
2004-01-27 12:40 ` cvs-commit at gcc dot gnu dot org
2004-01-27 12:42 ` pcarlini at suse dot de

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).