[Bug c++/23263] Fails to identify member definition

2005-08-06 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Severity|normal |enhancement Keywords||diagnostic http://gcc.gnu.org/bugzilla/show_bug.c

[Bug c++/23263] Fails to identify member definition

2005-08-06 Thread igodard at pacbell dot net
--- Additional Comments From igodard at pacbell dot net 2005-08-06 20:40 --- Reopened as a complaint about the diagnostic. The naive (or even reasonably sophisticated) user cannot figure out "illegal partial specialization" from that message. Comeau gives: "ComeauTest.c", line 7: error

[Bug c++/23263] Fails to identify member definition

2005-08-06 Thread bangerth at dealii dot org
--- Additional Comments From bangerth at dealii dot org 2005-08-06 20:29 --- No, you try to partially specialize a member. That isn't allowed. You either have to completely specialize all template parameters, or none. Long standing annoyance in C++... W. -- What