Re: __comp_ctor and std::ofstream default constructor

2006-10-19 Thread Andrew Pinski
On Fri, 2006-10-20 at 06:38 +, Brendon Costa wrote: > The other question however is still valid. If anyone knows a simple way > to achieve this then I would love to hear it. This is related to the ABI which you should also look at while dealing with C++. The ABI is the IA64 C++ ABI which can

Re: __comp_ctor and std::ofstream default constructor

2006-10-19 Thread Brendon Costa
Brendon Costa wrote: basic_ofstream::basic_ofstream(int __in_chrg, void* __vtt_parm) Can someone please help me understand why this happens? Well looking more in the source I have found that this happens when virtual inheritance is in play. It is used to determine which constructor will cons

__comp_ctor and std::ofstream default constructor

2006-10-19 Thread Brendon Costa
Hi all, I am having trouble with finding what method of a class that __comp_ctor () would call. I have been assuming that it will call the constructor method that has the same parameter list as the __comp_ctor () function but this does not seem to be working. Particulary when compiling code