public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* Re: c++/10521: possible access to private elements
@ 2003-04-28 14:49 bangerth
  0 siblings, 0 replies; 2+ messages in thread
From: bangerth @ 2003-04-28 14:49 UTC (permalink / raw)
  To: gcc-bugs, gcc-prs, lauterba, nobody

Synopsis: possible access to private elements

State-Changed-From-To: open->closed
State-Changed-By: bangerth
State-Changed-When: Mon Apr 28 14:49:16 2003
State-Changed-Why:
    Fixed in 3.3 and 3.4:
    
    g/x> /home/bangerth/bin/gcc-3.2.3-pre/bin/c++ -c x.cc
    g/x>
    g/x>
    g/x> /home/bangerth/bin/gcc-3.3-pre/bin/c++ -c x.cc
    x.cc: In function `int main()':
    x.cc:3: error: `class A::type' is private
    x.cc:13: error: within this context
    g/x> /home/bangerth/bin/gcc-3.4-pre/bin/c++ -c x.cc
    x.cc: In function `int main()':
    x.cc:3: error: `class A::type' is private
    x.cc:13: error: within this context

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=10521


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

* c++/10521: possible access to private elements
@ 2003-04-28 14:26 lauterba
  0 siblings, 0 replies; 2+ messages in thread
From: lauterba @ 2003-04-28 14:26 UTC (permalink / raw)
  To: gcc-gnats


>Number:         10521
>Category:       c++
>Synopsis:       possible access to private elements
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          accepts-illegal
>Submitter-Id:   net
>Arrival-Date:   Mon Apr 28 14:26:00 UTC 2003
>Closed-Date:
>Last-Modified:
>Originator:     Jens Lauterbach
>Release:        gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)
>Organization:
>Environment:
x86,Redhat 9,
>Description:
With a default value for a template parameter it is possible to access private elements. In the example below you get access to the private class "A::type".

The compile doesn't realize or ignores the private access.
>How-To-Repeat:
class A{
private:
   class type{};
};

template<class A,class type=typename A::type>
class B{
  type v;
};

int main(){
  //  B<A,A::type> b1; doesn't work -> ok
  B<A> b; //not ok
}
>Fix:

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


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

end of thread, other threads:[~2003-04-28 14:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-04-28 14:49 c++/10521: possible access to private elements bangerth
  -- strict thread matches above, loose matches on Subject: below --
2003-04-28 14:26 lauterba

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