From aa38f569937ca4eb7839e3b450b937d7a5e418ba Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Sun, 14 Nov 2004 18:25:24 +0000 Subject: [PATCH] * don't want C++ files to have extern "C" linkage. Fixes the C++ bindings link failures Jeff was seeing This commit was SVN r3562. --- src/mpi/cxx/constants.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/mpi/cxx/constants.h b/src/mpi/cxx/constants.h index 12eae38b4b..4927c3f497 100644 --- a/src/mpi/cxx/constants.h +++ b/src/mpi/cxx/constants.h @@ -4,9 +4,6 @@ // -#if defined(c_plusplus) || defined(__cplusplus) -extern "C" { -#endif // return codes OMPI_DECLSPEC extern const int SUCCESS; OMPI_DECLSPEC extern const int ERR_BUFFER; @@ -209,8 +206,3 @@ OMPI_DECLSPEC extern const Group GROUP_EMPTY; // topologies OMPI_DECLSPEC extern const int GRAPH; OMPI_DECLSPEC extern const int CART; - -#if defined(c_plusplus) || defined(__cplusplus) -} -#endif -