From da94008f394bc8a09d2a75269e032b51b0601f2c Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Fri, 27 Oct 2017 18:23:18 +0300 Subject: [PATCH] Fixed indentation in dynarrays.txt --- wadsrc/static/zscript/dynarrays.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/wadsrc/static/zscript/dynarrays.txt b/wadsrc/static/zscript/dynarrays.txt index e378f79ff..088e3cc41 100644 --- a/wadsrc/static/zscript/dynarrays.txt +++ b/wadsrc/static/zscript/dynarrays.txt @@ -7,7 +7,7 @@ struct DynArray_I8 native native void Copy(DynArray_I8 other); native void Move(DynArray_I8 other); - native uint Find(int item) const; + native uint Find(int item) const; native uint Push (int item); native bool Pop (); native void Delete (uint index, int deletecount = 1); @@ -26,7 +26,7 @@ struct DynArray_I16 native native void Copy(DynArray_I16 other); native void Move(DynArray_I16 other); - native uint Find(int item) const; + native uint Find(int item) const; native uint Push (int item); native bool Pop (); native void Delete (uint index, int deletecount = 1); @@ -45,7 +45,7 @@ struct DynArray_I32 native native void Copy(DynArray_I32 other); native void Move(DynArray_I32 other); - native uint Find(int item) const; + native uint Find(int item) const; native uint Push (int item); native bool Pop (); native void Delete (uint index, int deletecount = 1); @@ -64,7 +64,7 @@ struct DynArray_F32 native native void Copy(DynArray_F32 other); native void Move(DynArray_F32 other); - native uint Find(double item) const; + native uint Find(double item) const; native uint Push (double item); native bool Pop (); native void Delete (uint index, int deletecount = 1); @@ -83,7 +83,7 @@ struct DynArray_F64 native native void Copy(DynArray_F64 other); native void Move(DynArray_F64 other); - native uint Find(double item) const; + native uint Find(double item) const; native uint Push (double item); native bool Pop (); native void Delete (uint index, int deletecount = 1); @@ -102,7 +102,7 @@ struct DynArray_Ptr native native void Copy(DynArray_Ptr other); native void Move(DynArray_Ptr other); - native uint Find(voidptr item) const; + native uint Find(voidptr item) const; native uint Push (voidptr item); native bool Pop (); native void Delete (uint index, int deletecount = 1); @@ -121,7 +121,7 @@ struct DynArray_String native native void Copy(DynArray_String other); native void Move(DynArray_String other); - native uint Find(String item) const; + native uint Find(String item) const; native uint Push (String item); native bool Pop (); native void Delete (uint index, int deletecount = 1);