diff --git a/src/pathfinder/yapf/nodelist.hpp b/src/pathfinder/yapf/nodelist.hpp --- a/src/pathfinder/yapf/nodelist.hpp +++ b/src/pathfinder/yapf/nodelist.hpp @@ -151,9 +151,12 @@ public: return item; } + /** The number of items. */ FORCEINLINE int TotalCount() {return m_arr.Length();} + /** Get a particular item. */ FORCEINLINE Titem_& ItemAt(int idx) {return m_arr[idx];} + /** Helper for creating output of this array. */ template void Dump(D &dmp) const { dmp.WriteStructT("m_arr", &m_arr);