Skip to content

Commit 92f2b35

Browse files
committed
remove trailing space to bump travis tests
1 parent 4e7c258 commit 92f2b35

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/mpi-base.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1916,10 +1916,10 @@ end
19161916
array_of_starts::MPIBuffertype{Cint}, order::Integer, oldtype)
19171917
19181918
Creates a data type describing an `ndims`-dimensional subarray of size `array_of_subsizes`
1919-
of an `ndims-dimensional` array of size `array_of_sizes` and element type `oldtype`,
1920-
starting at the top-left location `array_of_starts`. The parameter `order` refers to
1919+
of an `ndims-dimensional` array of size `array_of_sizes` and element type `oldtype`,
1920+
starting at the top-left location `array_of_starts`. The parameter `order` refers to
19211921
the memory layout of the parent array, and can be either `MPI_ORDER_C` or
1922-
`MPI_ORDER_FORTRAN`. Note that, like other MPI data types, the type returned by this
1922+
`MPI_ORDER_FORTRAN`. Note that, like other MPI data types, the type returned by this
19231923
function should be committed with `MPI_Type_commit`.
19241924
"""
19251925
function Type_Create_Subarray(ndims::Integer,
@@ -1932,8 +1932,8 @@ function Type_Create_Subarray(ndims::Integer,
19321932
newtype_ref = Ref{Cint}()
19331933
flag = Ref{Cint}()
19341934

1935-
ccall(MPI_TYPE_CREATE_SUBARRAY, Nothing,
1936-
(Ref{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint},
1935+
ccall(MPI_TYPE_CREATE_SUBARRAY, Nothing,
1936+
(Ref{Cint}, Ptr{Cint}, Ptr{Cint}, Ptr{Cint},
19371937
Ref{Cint}, Ref{Cint}, Ptr{Cint}, Ptr{Cint}),
19381938
ndims, array_of_sizes, array_of_subsizes, array_of_starts,
19391939
order, mpitype(oldtype), newtype_ref, flag)

0 commit comments

Comments
 (0)