New gcc compilation fixes
This commit is contained in:
parent
9a800b8f7a
commit
76c91e50c1
5 changed files with 5 additions and 1 deletions
|
|
@ -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};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@
|
|||
#include <vector>
|
||||
#include <optional>
|
||||
#include <array>
|
||||
#include <cstdint>
|
||||
|
||||
namespace psemek::gfx
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
#include <cmath>
|
||||
#include <algorithm>
|
||||
#include <exception>
|
||||
#include <cstdint>
|
||||
|
||||
namespace psemek::ml
|
||||
{
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
#include <memory>
|
||||
#include <variant>
|
||||
#include <cstdint>
|
||||
|
||||
namespace psemek::phys2d
|
||||
{
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
#include <psemek/util/pimpl.hpp>
|
||||
|
||||
#include <variant>
|
||||
#include <cstdint>
|
||||
|
||||
namespace psemek::phys3d
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue