Skip to content

Commit

Permalink
Made NpyCoreApi.CastToType public instead of internal, needed for Sci…
Browse files Browse the repository at this point in the history
…Py.signal.
  • Loading branch information
Jason McCampbell (Enthought, Inc) committed Jun 2, 2011
1 parent db27a45 commit b93098b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/NumpyDotNet/NpyCoreApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ internal static ndarray Byteswap(ndarray arr, bool inplace) {
}
}

internal static ndarray CastToType(ndarray arr, dtype d, bool fortran) {
public static ndarray CastToType(ndarray arr, dtype d, bool fortran) {
Incref(d.Descr);
lock (GlobalIterpLock) {
return DecrefToInterface<ndarray>(
Expand Down

0 comments on commit b93098b

Please sign in to comment.