Remove last traces of KCC

This commit is contained in:
Sylvain Pion 2008-01-02 17:28:16 +00:00
parent 8f14630522
commit b95fbae11a
3 changed files with 2 additions and 9 deletions

View File

@ -2114,13 +2114,6 @@ int main()
output_first_ciff_separate(__MWERKS__, 16);
CGAL_STDCOUT << CGAL_STDENDL;
# endif // (__MWERKS__ == 1)
#elif defined(__KCC)
// KAI CC
CGAL_STDCOUT << "KAI CC@";
output_first_ciff_separate(__KCC_VERSION / 100, 10);
if (__KCC_VERSION % 100 != 0)
CGAL_STDCOUT << char(__KCC_VERSION % 100 + int('a') - 1);
CGAL_STDCOUT << CGAL_STDENDL;
#elif defined(__PGI)
// Portland Group Compiler
// There does not seem to be a way to find the compiler version from

View File

@ -30,7 +30,7 @@ CGAL_BEGIN_NAMESPACE
// Actually, we should better list the compilers which are inferior, i.e.
// the others, which need the additional useless code.
#if !defined(__KCC) && !defined(__BORLANDC__) && !defined(__PGI)
#if !defined(__BORLANDC__) && !defined(__PGI)
# define CGAL_REMOVE_FLOW_WARNING
#endif

View File

@ -2348,7 +2348,7 @@ int main(int argc, char* argv[])
break;
}
}
#if !defined(__KCC) && !defined(__BORLANDC__)
#if !defined(__BORLANDC__)
return 0; // never reached
#endif
}