1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-11-28 01:20:55 +01:00

ImVector: private -> protected

This commit is contained in:
omar 2014-12-03 11:56:33 +00:00
parent bd762b559c
commit d31623061f

View File

@ -77,7 +77,7 @@ namespace ImGui
template<typename T>
class ImVector
{
private:
protected:
size_t Size;
size_t Capacity;
T* Data;