impr: General code cleanup

This commit is contained in:
WerWolv
2023-11-10 20:47:08 +01:00
parent 3aacf0f1fb
commit 498d8c1d65
181 changed files with 1431 additions and 1579 deletions

View File

@@ -4,7 +4,6 @@
#include <functional>
#include <string>
#include <vector>
namespace hex {
@@ -82,6 +81,6 @@ namespace hex {
void View::setFontAtlas(ImFontAtlas *atlas) { s_fontAtlas = atlas; }
ImFontConfig View::getFontConfig() { return s_fontConfig; }
void View::setFontConfig(ImFontConfig config) { s_fontConfig = config; }
void View::setFontConfig(ImFontConfig config) { s_fontConfig = std::move(config); }
}