Fix more GCC 8.1 warnings   1   master 

Fix 3 warnings reported by GCC 8.1 of the following type

```src/client/gameui.cpp:191:43: warning: « void* memset(void*, int, size_t) » effacement d'un objet du type non trivial « struct GameUI::Flags »; use assignment or value-initialization instead [-Wclass-memaccess]
  memset(&m_flags, 0, sizeof(GameUI::Flags));
```
This commit is contained in:
Loïc Blot 2018-05-28 15:39:02 +02:00
parent b620f2f02d
commit a78659ed05
3 changed files with 3 additions and 3 deletions

View File

@ -188,7 +188,7 @@ void GameUI::update(const RunStats &stats, Client *client, MapDrawControl *draw_
void GameUI::initFlags() void GameUI::initFlags()
{ {
memset(&m_flags, 0, sizeof(GameUI::Flags)); m_flags = GameUI::Flags();
m_flags.show_chat = true; m_flags.show_chat = true;
m_flags.show_hud = true; m_flags.show_hud = true;
m_flags.show_debug = g_settings->getBool("show_debug"); m_flags.show_debug = g_settings->getBool("show_debug");

View File

@ -1014,7 +1014,8 @@ bool Game::startup(bool *kill,
RenderingEngine::get_scene_manager()->getParameters()-> RenderingEngine::get_scene_manager()->getParameters()->
setAttribute(scene::OBJ_LOADER_IGNORE_MATERIAL_FILES, true); setAttribute(scene::OBJ_LOADER_IGNORE_MATERIAL_FILES, true);
memset(&runData, 0, sizeof(runData)); // Reinit runData
runData = GameRunData();
runData.time_from_last_punch = 10.0; runData.time_from_last_punch = 10.0;
runData.update_wielded_item_trigger = true; runData.update_wielded_item_trigger = true;

View File

@ -334,7 +334,6 @@ void GUITable::setTable(const TableOptions &options,
// Make template for new cells // Make template for new cells
Cell newcell; Cell newcell;
memset(&newcell, 0, sizeof newcell);
newcell.content_type = columntype; newcell.content_type = columntype;
newcell.tooltip_index = tooltip_index; newcell.tooltip_index = tooltip_index;
newcell.reported_column = j+1; newcell.reported_column = j+1;