Skip to content

Commit

Permalink
Fixed accessibility of FindArrayType - now public. Needed by scipy.li…
Browse files Browse the repository at this point in the history
…nalg.
  • Loading branch information
Jason McCampbell (Enthought, Inc) committed May 23, 2011
1 parent 9ab3587 commit b82f25d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/NumpyDotNet/NpyArray.cs
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ private static dtype FindArrayReturn(dtype chktype, dtype minitype) {
/// <param name="minitype">Minimum type, or null if any</param>
/// <param name="max">Maximum dimensions</param>
/// <returns>Type descriptor fitting requirements</returns>
internal static dtype FindArrayType(Object src, dtype minitype, int max = NpyDefs.NPY_MAXDIMS) {
public static dtype FindArrayType(Object src, dtype minitype, int max = NpyDefs.NPY_MAXDIMS) {
dtype chktype = null;

if (src is ndarray) {
Expand Down

0 comments on commit b82f25d

Please sign in to comment.