From e3e23aa1598aca0a3266a691324b821d04a0a1b4 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Fri, 20 Jul 2001 20:27:41 +0000 Subject: [PATCH] Add Comeau defines [SVN r10678] --- config_test.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/config_test.cpp b/config_test.cpp index 66994061..008423b1 100644 --- a/config_test.cpp +++ b/config_test.cpp @@ -70,6 +70,14 @@ int main() // compilers +# ifdef __COMO__ + cout << "__COMO__ defined as " << __COMO__ << "\n"; +# endif + +# ifdef __COMO_VERSION__ + cout << "__COMO_VERSION__ defined as " << __COMO_VERSION__ << "\n"; +# endif + # ifdef __GNUC__ cout << "__GNUC__ defined as " << __GNUC__ << "\n"; # endif @@ -78,6 +86,10 @@ int main() cout << "__GNUC_MINOR__ defined as " << __GNUC_MINOR__ << "\n"; # endif +# ifdef __EDG__ + cout << "__EDG__ defined as " << __EDG__ << "\n"; +# endif + # ifdef __EDG_VERSION__ cout << "__EDG_VERSION__ defined as " << __EDG_VERSION__ << "\n"; # endif