1
1

Fix a compiler warning that Ralph noticed when compiling with

--disable-dlopen (extra OBJ_CLASS_INSTANCES that were not being
used).

This commit was SVN r13169.
Этот коммит содержится в:
Jeff Squyres 2007-01-17 22:36:33 +00:00
родитель a3aae09ca3
Коммит fe08f5c675

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

@ -35,8 +35,9 @@
#include "opal/constants.h" #include "opal/constants.h"
#if OMPI_WANT_LIBLTDL
/* /*
* Private types * Private types; only necessary when we're dlopening components.
*/ */
typedef enum component_status { typedef enum component_status {
UNVISITED, UNVISITED,
@ -74,6 +75,7 @@ struct ltfn_data_holder_t {
char name[MCA_BASE_MAX_COMPONENT_NAME_LEN]; char name[MCA_BASE_MAX_COMPONENT_NAME_LEN];
}; };
typedef struct ltfn_data_holder_t ltfn_data_holder_t; typedef struct ltfn_data_holder_t ltfn_data_holder_t;
#endif /* OMPI_WANT_LIBLTDL */
#if OMPI_WANT_LIBLTDL #if OMPI_WANT_LIBLTDL