Merge remote-tracking branch 'origin' into 2015-03-antialiased-primitives

Conflicts:
	imgui.cpp
This commit is contained in:
ocornut
2015-07-07 12:42:29 -06:00
2 changed files with 138 additions and 139 deletions

View File

@ -746,12 +746,11 @@ struct ImGuiIO
template<typename T>
class ImVector
{
protected:
public:
int Size;
int Capacity;
T* Data;
public:
typedef T value_type;
typedef value_type* iterator;
typedef const value_type* const_iterator;