Remove commas after last item in enumeration.

This brings these enums to match the rest of the code and fixes
2 warnings under clang about using C++11 extensions.
This commit is contained in:
Bruce Mitchener 2017-09-14 10:35:30 +07:00
parent 54d30d758f
commit 2fcdeb7f12

View file

@ -220,7 +220,7 @@ enum ImGuiDataType
{
ImGuiDataType_Int,
ImGuiDataType_Float,
ImGuiDataType_Float2,
ImGuiDataType_Float2
};
enum ImGuiDir
@ -229,7 +229,7 @@ enum ImGuiDir
ImGuiDir_Left = 0,
ImGuiDir_Right = 1,
ImGuiDir_Up = 2,
ImGuiDir_Down = 3,
ImGuiDir_Down = 3
};
enum ImGuiCorner