From 1bedf1830548b44e7dd4a57b3a597cc173a840f6 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Tue, 13 Jan 2009 15:09:16 +0000 Subject: [PATCH] OMPI_DECLSPEC is no longer necessary when it's static. Duh. This commit was SVN r20254. --- ompi/mpi/cxx/constants.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ompi/mpi/cxx/constants.h b/ompi/mpi/cxx/constants.h index 74895e68bf..889bfff659 100644 --- a/ompi/mpi/cxx/constants.h +++ b/ompi/mpi/cxx/constants.h @@ -250,9 +250,9 @@ OMPI_DECLSPEC extern const int MODE_SEQUENTIAL; OMPI_DECLSPEC extern const int DISPLACEMENT_CURRENT; #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; -OMPI_DECLSPEC static const int SEEK_CUR = ::SEEK_CUR; -OMPI_DECLSPEC static const int SEEK_END = ::SEEK_END; +static const int SEEK_SET = ::SEEK_SET; +static const int SEEK_CUR = ::SEEK_CUR; +static const int SEEK_END = ::SEEK_END; #endif OMPI_DECLSPEC extern const int MAX_DATAREP_STRING;