Skip to content

Commit 1b0fa56

Browse files
committed
config: Remove remaining HAVE_LONG_LONG
In the commit cacd6f3, I removed `#if HAVE_[TYPE]` lines for types which are always available in C99 compilers. But I forgot to remove this line. The `HAVE_LONG_LONG` macro is still defined in `confdefs.h`. So this is not a bug but code cleanup. Signed-off-by: KAWASHIMA Takahiro <t-kawashima@jp.fujitsu.com>
1 parent 91d05f9 commit 1b0fa56

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

config/ompi_fortran_get_value_true.m4

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,8 @@ void ompi_print_f(ompi_fortran_logical_t * logical)
6868
fprintf(f, "%d\n", (int)*logical);
6969
} else if (SIZEOF_LONG >= sizeof(ompi_fortran_logical_t) ) {
7070
fprintf(f, "%ld\n", (long) *logical);
71-
#ifdef HAVE_LONG_LONG
7271
} else if (SIZEOF_LONG_LONG >= sizeof(ompi_fortran_logical_t) ) {
7372
fprintf(f, "%lld\n", (long long) *logical);
74-
#endif
7573
} else {
7674
exit(1);
7775
}

0 commit comments

Comments
 (0)