1
1

corrected stdbool.h inclusion to allow Oracle C++ compilers to work with OMPI

This commit was SVN r23998.
Этот коммит содержится в:
Terry Dontje 2010-11-05 18:54:19 +00:00
родитель 64863d086c
Коммит e8aa8984a8
2 изменённых файлов: 3 добавлений и 4 удалений

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

@ -45,7 +45,9 @@ extern "C" {
#include <sys/time.h>
#endif
#ifndef WIN32
#include <stdbool.h>
# if !(defined(c_plusplus) || defined(__cplusplus))
# include <stdbool.h>
# endif
#endif
#include <stdio.h>

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

@ -42,9 +42,6 @@
#include <string.h>
#include <assert.h>
#include <time.h>
#ifndef WIN32
#include <stdbool.h>
#endif
#include "opal/class/opal_object.h"
#include "opal/threads/mutex.h"