I've been tryign to port some of my proto code to VC9 but it seems I failed. The code compiles fine but when I try to use any of my newly defined operator on my terminal, VC9 complains it cna't find them. What can be the reason of this symptoms as the same code works on both gcc and icc ?
Joel Falcou wrote:
I've been tryign to port some of my proto code to VC9 but it seems I failed. The code compiles fine but when I try to use any of my newly defined operator on my terminal, VC9 complains it cna't find them.
What can be the reason of this symptoms as the same code works on both gcc and icc ?
It's all just whistlin' Dixie until you post your code. ;-) -- Eric Niebler BoostPro Computing http://www.boostpro.com
Eric Niebler a écrit :
It's all just whistlin' Dixie until you post your code. ;-)
Well ... it's like friggin long in fact. Basically all I have is a simpel gramamr with a terminal and a nary-expr catch all rules, a template domain and domain generator (remember our discussion about the template vec<T> stuff ?) and a simple ocntext that forward the computation of tag X to a PFO implement<X>. The only thing that may be different is that all this live in a nested namspace called simd inside a namespace called nt2 in which the terminal, expression and function ar einjected using the using directive. I will try to package somethign but it won't compile as it use lots of side code for various traits and meta-programming tasks. Considering it works on gcc fine, I think it's somethign amiss with VC9 ADL but i can't find what. -- ___________________________________________ Joel Falcou - Assistant Professor PARALL Team - LRI - Universite Paris Sud XI Tel : (+33)1 69 15 66 35
Joel Falcou wrote:
Eric Niebler a écrit :
It's all just whistlin' Dixie until you post your code. ;-)
Well ... it's like friggin long in fact. <snip>
Try to post a minimal example that demonstrates the error. But even if you can't narrow it down, post your code anyway and I'll have a look as time allows. -- Eric Niebler BoostPro Computing http://www.boostpro.com
participants (2)
-
Eric Niebler
-
Joel Falcou