public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/55347] New: Specialized member of class template prevents visibility setting
@ 2012-11-15 20:57 luto at mit dot edu
  0 siblings, 0 replies; only message in thread
From: luto at mit dot edu @ 2012-11-15 20:57 UTC (permalink / raw)
  To: gcc-bugs


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

             Bug #: 55347
           Summary: Specialized member of class template prevents
                    visibility setting
    Classification: Unclassified
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: luto@mit.edu


Compiling this code:

--- cut here ---
template<typename T>
class A
{
  void func() {}
};

//#pragma GCC visibility push(default) -- no effect

template<> void A<int>::func() {}  // This causes a problem
template class __attribute__((visibility("default"))) A<int>;

//#pragma GCC visibility pop
--- cut here ---

results in:

template_visibility.cc:10:55: warning: type attributes ignored after type is
already defined [-Wattributes]

The emitted code ends up hidden.

This is a minor issue in C++98 (I'm not sure why you'd want to do this), but
it's an actual problem in C++11: extern templates behave the same way.

I think that gcc's behavior is consistent, but there should be a way to
override the visibility of a particular class template specialization *without
instantiating/defining it*, then specialize a member, then instantiate the
template.


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

only message in thread, other threads:[~2012-11-15 20:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-15 20:57 [Bug c++/55347] New: Specialized member of class template prevents visibility setting luto at mit dot edu

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