diff options
author | Michi Henning <michi@zeroc.com> | 2003-10-06 23:58:34 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-10-06 23:58:34 +0000 |
commit | b8f1668773dfcdcdee7f214e6730f08dc99e100a (patch) | |
tree | 57384c5e2429c79f3dda4fe527b703f38bd09a55 /cpp/src/Ice | |
parent | Moved UserExceptionFactory from Ice to IceInternal namespace/package. (diff) | |
download | ice-b8f1668773dfcdcdee7f214e6730f08dc99e100a.tar.bz2 ice-b8f1668773dfcdcdee7f214e6730f08dc99e100a.tar.xz ice-b8f1668773dfcdcdee7f214e6730f08dc99e100a.zip |
Fixed VC++ 6 compiler bug.
Diffstat (limited to 'cpp/src/Ice')
-rw-r--r-- | cpp/src/Ice/FactoryTable.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cpp/src/Ice/FactoryTable.cpp b/cpp/src/Ice/FactoryTable.cpp index 1166208c4d7..3a2cdd0c6c0 100644 --- a/cpp/src/Ice/FactoryTable.cpp +++ b/cpp/src/Ice/FactoryTable.cpp @@ -12,7 +12,11 @@ // // ********************************************************************** -#include <Ice/FactoryTable.h> +#include <Ice/FactoryTable.h>
+
+#if defined(_MSC_VER) && (_MSC_VER < 1300)
+#include <Ice/UserExceptionFactory.h> // COMPILERBUG: VC++ 6 complains about an undefined type
+#endif // // This constructor initializes the single global Ice::factoryTable instance |