New gcc compilation fixes

This commit is contained in:
Nikita Lisitsa 2023-10-03 21:32:13 +03:00
parent 9a800b8f7a
commit 76c91e50c1
5 changed files with 5 additions and 1 deletions

View file

@ -16,7 +16,7 @@ namespace psemek::ecs
entity_accessor entity_container::get(entity_handle const & entity)
{
auto const & data = entity_list_.get_entities()[entity.id];
auto const data = entity_list_.get_entities()[entity.id];
return {data.table, data.row};
}

View file

@ -10,6 +10,7 @@
#include <vector>
#include <optional>
#include <array>
#include <cstdint>
namespace psemek::gfx
{

View file

@ -5,6 +5,7 @@
#include <cmath>
#include <algorithm>
#include <exception>
#include <cstdint>
namespace psemek::ml
{

View file

@ -8,6 +8,7 @@
#include <memory>
#include <variant>
#include <cstdint>
namespace psemek::phys2d
{

View file

@ -8,6 +8,7 @@
#include <psemek/util/pimpl.hpp>
#include <variant>
#include <cstdint>
namespace psemek::phys3d
{