On 09/15/2011 05:49 PM, Jason Merrill wrote:
On 09/15/2011 05:14 PM, Richard Henderson wrote:
On 09/15/2011 02:03 PM, Andrew MacLeod wrote:
a template calling that particular method was probably not invoked.
The joys of c++ templates eh :-)
Isn't there an extension that forces an entire class template to be
instantiated?
It's standard C++.
template struct __atomic_base<bool>;
etc.
Do we want to start exporting these from libstdc++?
I dont know the ins and outs of the library... the typedefs and
specializations are already there, I can write:
atomic_char c;
c = 'a'
in my program and it will invoke the required template for the class
and call the appropriate store routine or whatever.
I'm working on the changes now which will enable lock-free versions of
the templates for the types which are supported by the __sync routines,
and locked versions for everything else.
do we need to explicitly export something?
Andrew