From b8f1668773dfcdcdee7f214e6730f08dc99e100a Mon Sep 17 00:00:00 2001 From: Michi Henning Date: Mon, 6 Oct 2003 23:58:34 +0000 Subject: Fixed VC++ 6 compiler bug. --- cpp/src/Ice/FactoryTable.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'cpp/src') 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 +#include + +#if defined(_MSC_VER) && (_MSC_VER < 1300) +#include // COMPILERBUG: VC++ 6 complains about an undefined type +#endif // // This constructor initializes the single global Ice::factoryTable instance -- cgit v1.2.3