public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* c++/3531: namespace lookup for template specialization fails <synopsis of the problem (one line)>
@ 2001-07-02  9:26 gjlos
  0 siblings, 0 replies; only message in thread
From: gjlos @ 2001-07-02  9:26 UTC (permalink / raw)
  To: gcc-gnats

>Number:         3531
>Category:       c++
>Synopsis:       namespace lookup for template specialization fails
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          rejects-legal
>Submitter-Id:   net
>Arrival-Date:   Mon Jul 02 09:26:01 PDT 2001
>Closed-Date:
>Last-Modified:
>Originator:     Gert-jan Los
>Release:        3.0
>Organization:
>Environment:
System: SunOS memorum 5.7 Generic_106541-08 sun4u sparc SUNW,Ultra-1
Architecture: sun4

	
host: sparc-sun-solaris2.7
build: sparc-sun-solaris2.7
target: sparc-sun-solaris2.7
configured with: ../gcc-3.0/configure --with-ld=/usr/ccs/bin/ld --with-as=/usr/ccs/bin/as --disable-nls --disable-threads --enable-languages=c,c++
>Description:
	
	Given the code below.  g++ rejects the specialization of ns::foo<true>
	despite the explicit namespace qualification.

	The Message reads:
		ns_templspec.C:5: specializing `struct ns::foo<true>' in
		different namespace
		ns_templspec.C:2:   from definition of `template<bool FLAG>
		struct ns::foo'

>How-To-Repeat:
	
cat <<-'EOT' >ns_templspec.C
	namespace ns {
		template<bool FLAG> struct foo;
	}
	
	template<> struct ns::foo<true> { };
EOT
					
g++ ns_templspec.C

>Fix:
	
	Rewrite the last line as
		namespace ns { template<> struct foo<true> { }; }

>Release-Note:
>Audit-Trail:
>Unformatted:


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2001-07-02  9:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-07-02  9:26 c++/3531: namespace lookup for template specialization fails <synopsis of the problem (one line)> gjlos

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).