[mpich2-commits] r6613 - mpich2/trunk
jayesh at mcs.anl.gov
jayesh at mcs.anl.gov
Mon May 3 16:16:47 CDT 2010
Author: jayesh
Date: 2010-05-03 16:16:47 -0500 (Mon, 03 May 2010)
New Revision: 6613
Modified:
mpich2/trunk/winconfigure.wsf
Log:
Fixed the size of long double complex C++ type - The type size is used for special C++ types NOT MPI types to support fortran types. This fixes the failing arcomplex C++ test on windows.
Modified: mpich2/trunk/winconfigure.wsf
===================================================================
--- mpich2/trunk/winconfigure.wsf 2010-05-03 18:13:09 UTC (rev 6612)
+++ mpich2/trunk/winconfigure.wsf 2010-05-03 21:16:47 UTC (rev 6613)
@@ -408,11 +408,11 @@
len_doublecplx = "10"
len_2dc = "20"
-' Special C++ Datatypes to support Fortran datatypes within C++
+' Special C++ Datatypes
len_bool = "01"
len_complex = "08"
len_double_complex = "10"
- len_long_double_complex = "20"
+ len_long_double_complex = "10"
' C99 types - These types are not supported by VS, however
' C++ pgms use the same types. So we use the C++ type sizes here
More information about the mpich2-commits
mailing list