Re: [Quickfix-developers] RE: QuickFix 4.4 Support For .NET
Brought to you by:
orenmnero
From: Oren M. <ore...@ya...> - 2003-11-20 14:30:34
|
I've split them, but I was getting in three of the messages INTERNAL COMPILER ERROR 1001. I did some experimenting and it looks to me like there is a bug in the managed C++ compiler where it breaks if there are more than 17 inner classes. I was able to demonstrate the problem with this bit of code: #using <mscorlib.dll> public __gc class mainclass { __gc class class1 {}; __gc class class2 {}; __gc class class3 {}; __gc class class4 {}; __gc class class5 {}; __gc class class6 {}; __gc class class7 {}; __gc class class8 {}; __gc class class9 {}; __gc class class10 {}; __gc class class11 {}; __gc class class12 {}; __gc class class13 {}; __gc class class14 {}; __gc class class15 {}; __gc class class16 {}; __gc class class17 {}; __gc class class18 {}; }; This chokes the compiler, but if you remove class18, it's fine. Does anyone know if this is a known problem with the managed c++ compiler and if there is a patch available? --- LeRoi Beukes <le...@pe...> wrote: > Hi > > Any Idea when this will be available ? > I know about the COFF Error (number of sections > exceeded blah blah) > > Anyone know how I can get past this (other than > splitting up the header > files ... ?) > > Tx > Bye > Le Roi > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback > Program. > Does SourceForge.net help you be more productive? > Does it > help you create better code? SHARE THE LOVE, and > help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers __________________________________ Do you Yahoo!? Free Pop-Up Blocker - Get it now http://companion.yahoo.com/ |