We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hello,
i have a question related to Realview Compiler V3.0. Is the forward declaration of a class not supported or is it a mistake of me? Please look the example below:
class clsB; // Forward Declaration Not Working class clsA { public: clsA(); // Constructor clsB oB; // Compiler error: #70: incomplete type is not allowed }; class clsB { public: clsB(); // Constructor };
Thank you Eugen
thank you Per for your reply.
Eugen