Building with IBM C++ no longer needs a main() entry point.

Fixes #5088.

[SVN r68318]
This commit is contained in:
John Maddock
2011-01-20 10:14:55 +00:00
parent 407e7c7993
commit 7ed55a515e

View File

@ -224,19 +224,3 @@ int WINAPI DllEntryPoint(HINSTANCE , unsigned long , void*)
}
#endif
#if defined(__IBMCPP__) && defined(BOOST_REGEX_DYN_LINK)
//
// Is this correct - linker complains without it ?
//
int main()
{
return 0;
}
#endif