1
1

OMPI_DECLSPEC is no longer necessary when it's static. Duh.

This commit was SVN r20254.
Этот коммит содержится в:
Jeff Squyres 2009-01-13 15:09:16 +00:00
родитель e728668031
Коммит 1bedf18305

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

@ -250,9 +250,9 @@ OMPI_DECLSPEC extern const int MODE_SEQUENTIAL;
OMPI_DECLSPEC extern const int DISPLACEMENT_CURRENT; OMPI_DECLSPEC extern const int DISPLACEMENT_CURRENT;
#if OMPI_PROVIDE_MPI_FILE_INTERFACE && !defined(OMPI_IGNORE_CXX_SEEK) && OMPI_WANT_MPI_CXX_SEEK #if OMPI_PROVIDE_MPI_FILE_INTERFACE && !defined(OMPI_IGNORE_CXX_SEEK) && OMPI_WANT_MPI_CXX_SEEK
OMPI_DECLSPEC static const int SEEK_SET = ::SEEK_SET; static const int SEEK_SET = ::SEEK_SET;
OMPI_DECLSPEC static const int SEEK_CUR = ::SEEK_CUR; static const int SEEK_CUR = ::SEEK_CUR;
OMPI_DECLSPEC static const int SEEK_END = ::SEEK_END; static const int SEEK_END = ::SEEK_END;
#endif #endif
OMPI_DECLSPEC extern const int MAX_DATAREP_STRING; OMPI_DECLSPEC extern const int MAX_DATAREP_STRING;