[GCC-XML] Templated classes and default constructors

Jason Roelofs jameskilton at gmail.com
Tue Mar 10 13:06:36 EDT 2009


More of a question and clarification than anything, I'm not sure what
is supposed to happen here:

Using GCCXML build 0.9.0 with GCC 4.1 (build from repository Feb
27th), I've noticed that while regular classes have all of their
generated constructors / destructors / operators included in the XML
now, templated classes do not have any of this.

Given this code:


namespace classes {
  class Adder {

  };

  template<typename T>
  class TemplateAdder {

  };

  typedef TemplateAdder<int> IntAdder;
}




More information about the gccxml mailing list