1
1

* don't want C++ files to have extern "C" linkage. Fixes the C++ bindings

link failures Jeff was seeing

This commit was SVN r3562.
Этот коммит содержится в:
Brian Barrett 2004-11-14 18:25:24 +00:00
родитель fbf7ad1613
Коммит aa38f56993

Просмотреть файл

@ -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