소스 검색

base: add Array::Data() method to access the underlying buffer.

undefined
Sam Hocevar 11 년 전
부모
커밋
231b99714f
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. +10
    -0
      src/lol/base/array.h

+ 10
- 0
src/lol/base/array.h 파일 보기

@@ -136,6 +136,16 @@ public:
return m_data[m_count - 1];
}

inline Element *Data()
{
return m_data;
}

inline Element const *Data() const
{
return m_data;
}

inline Element const& Last() const
{
ASSERT(m_count > 0);


불러오는 중...
취소
저장