mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-17 20:52:36 +01:00
Cleanup.
This commit is contained in:
4
3rdparty/.editorconfig
vendored
4
3rdparty/.editorconfig
vendored
@@ -20,6 +20,10 @@ indent_size = 4
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
||||
[ocornut-imgui/*.inl]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
||||
[pvrtc/*]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
||||
6
3rdparty/ocornut-imgui/imgui_user.inl
vendored
6
3rdparty/ocornut-imgui/imgui_user.inl
vendored
@@ -9,7 +9,7 @@ namespace ImGui
|
||||
: Ptr(NULL)
|
||||
{
|
||||
if (NULL != rhs.Ptr
|
||||
&& 0 != strcmp(rhs.Ptr, ""))
|
||||
&& 0 != strcmp(rhs.Ptr, ""))
|
||||
{
|
||||
Ptr = ImStrdup(rhs.Ptr);
|
||||
}
|
||||
@@ -19,7 +19,7 @@ namespace ImGui
|
||||
: Ptr(NULL)
|
||||
{
|
||||
if (NULL != rhs
|
||||
&& 0 != strcmp(rhs, ""))
|
||||
&& 0 != strcmp(rhs, ""))
|
||||
{
|
||||
Ptr = ImStrdup(rhs);
|
||||
}
|
||||
@@ -47,7 +47,7 @@ namespace ImGui
|
||||
Clear();
|
||||
|
||||
if (NULL != rhs
|
||||
&& 0 != strcmp(rhs, ""))
|
||||
&& 0 != strcmp(rhs, ""))
|
||||
{
|
||||
Ptr = ImStrdup(rhs);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user