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)
|
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};
|
return {data.table, data.row};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <optional>
|
#include <optional>
|
||||||
#include <array>
|
#include <array>
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
namespace psemek::gfx
|
namespace psemek::gfx
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <exception>
|
#include <exception>
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
namespace psemek::ml
|
namespace psemek::ml
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <variant>
|
#include <variant>
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
namespace psemek::phys2d
|
namespace psemek::phys2d
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@
|
||||||
#include <psemek/util/pimpl.hpp>
|
#include <psemek/util/pimpl.hpp>
|
||||||
|
|
||||||
#include <variant>
|
#include <variant>
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
namespace psemek::phys3d
|
namespace psemek::phys3d
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue