Remove -Wno-reorder and make it an error

This commit is contained in:
Nekotekina 2020-02-21 15:20:10 +03:00
parent 54f2c27ba0
commit 972e0ab31d
43 changed files with 139 additions and 149 deletions

View file

@ -15,7 +15,8 @@ constexpr auto qstr = QString::fromStdString;
//Show up the savedata list, either to choose one to save/load or to manage saves.
//I suggest to use function callbacks to give save data list or get save data entry. (Not implemented or stubbed)
save_data_list_dialog::save_data_list_dialog(const std::vector<SaveDataEntry>& entries, s32 focusedEntry, u32 op, vm::ptr<CellSaveDataListSet> listSet, QWidget* parent)
: QDialog(parent), m_save_entries(entries), m_entry(selection_code::new_save), m_entry_label(nullptr), m_sort_column(0), m_sort_ascending(true)
: QDialog(parent)
, m_save_entries(entries)
{
if (op >= 8)
{