diff options
author | Lionel Landwerlin <[email protected]> | 2019-06-18 10:37:11 +0300 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2019-06-18 15:34:13 +0000 |
commit | 51076eb87ce3d28b37ffa9606d8692c32c287d75 (patch) | |
tree | 2e4254bead257ace940cc1830c6ef52d46eaea17 /src/imgui/README | |
parent | 9402970751ca04c4d6edb3a0441a4063a975295c (diff) |
imgui: bump imgui memory editor copy
Getting rid of a compiler warning :
In file included from ../src/intel/tools/aubinator_viewer.cpp:225:
../src/imgui/imgui_memory_editor.h: In member function ‘void MemoryEditor::DisplayPreviewData(size_t, const u8*, size_t, MemoryEditor::DataType, MemoryEditor::DataFormat, char*, size_t) const’:
../src/imgui/imgui_memory_editor.h:637:16: warning: enumeration value ‘DataType_COUNT’ not handled in switch [-Wswitch]
switch (data_type)
^
Signed-off-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/imgui/README')
-rw-r--r-- | src/imgui/README | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/imgui/README b/src/imgui/README index 01419237553..ea05a2cfdde 100644 --- a/src/imgui/README +++ b/src/imgui/README @@ -14,11 +14,11 @@ Date: Fri Feb 15 13:10:22 2019 +0100 There is also a copy of the memory editor (https://github.com/ocornut/imgui_club) at the following commit : -commit 378e32ac92aa120512ee1aeb90522c9214e9b694 +commit e680ad8d6b9278367d0f71a698beb96b70762ed4 Author: omar <[email protected]> -Date: Wed Oct 10 15:20:32 2018 +0200 +Date: Thu May 9 14:11:22 2019 +0200 - Comments (#9) + imgui_memory_editor: Silence compiler warning. (#13) Embedding the library into one's project is main way people seems to work with ImGui. Since this is just for a debugging tool, we're not |