|
From: Christophe Prud'h. <pru...@MI...> - 2000-06-21 00:12:02
|
Hi If you compile corelinux with a 2.96 gcc snapshot then you might encounter many error messages dure to an early use of Exception class. I think that the compiler is right. Someone can comment on this ? this is easily fixed by moving the inclusion of Exception.hpp in Coomon.hpp as the first header to be included here is a patch while waiting for the next version Index: Common.hpp =================================================================== RCS file: /cvsroot/corelinux/corelinux/corelinux/Common.hpp,v retrieving revision 1.5 diff -c -r1.5 Common.hpp *** Common.hpp 2000/06/02 11:51:52 1.5 --- Common.hpp 2000/06/21 00:05:27 *************** *** 145,154 **** // Common class types. #include <CoreLinuxObject.hpp> // Base support class #include <AbstractString.hpp> // Base Abstraction *temp!!! #include <StringUtf8.hpp> // CoreLinux++ Default String - #include <Exception.hpp> // Class Exception #include <NullPointerException.hpp> // NullPointerException #include <Assertion.hpp> // Class Assertion #include <AccessRights.hpp> // General Access Settings --- 145,154 ---- // Common class types. + #include <Exception.hpp> // Class Exception #include <CoreLinuxObject.hpp> // Base support class #include <AbstractString.hpp> // Base Abstraction *temp!!! #include <StringUtf8.hpp> // CoreLinux++ Default String #include <NullPointerException.hpp> // NullPointerException #include <Assertion.hpp> // Class Assertion #include <AccessRights.hpp> // General Access Settings |