This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/32158] uninitialized_fill compile failure if no default assignment operator



------- Comment #3 from pcarlini at suse dot de  2007-05-30 21:25 -------
Thanks Mark. In fact, we have already a test for that, in ext/is_pod.cc. But we
have a problem with templates. This:

  template<typename T>
    struct A
    {
      A() { }
    };

has __is_pod(A<int>) true. Actually, the problem affects also other front-end
traits, probably most of them :( :( They are not working correctly with
templates. First blush, any hint where I should fix my implementation?


-- 


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]