Fix missing header after stdlib update
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
c559e60104
commit
e1c5460db4
|
@ -1,10 +1,11 @@
|
||||||
#ifndef CREATURELIB_HISTORYHOLDER_HPP
|
#ifndef CREATURELIB_HISTORYHOLDER_HPP
|
||||||
#define CREATURELIB_HISTORYHOLDER_HPP
|
#define CREATURELIB_HISTORYHOLDER_HPP
|
||||||
|
|
||||||
|
#include <functional>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
#include "../../Library/Exceptions/CreatureException.hpp"
|
#include "../../Library/Exceptions/CreatureException.hpp"
|
||||||
#include "HistoryElements/HistoryElement.hpp"
|
|
||||||
#include "HistoryElements/DamageHistory.hpp"
|
#include "HistoryElements/DamageHistory.hpp"
|
||||||
|
#include "HistoryElements/HistoryElement.hpp"
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
concept HistoryElementType = std::is_base_of<CreatureLib::Battling::HistoryElement, T>::value;
|
concept HistoryElementType = std::is_base_of<CreatureLib::Battling::HistoryElement, T>::value;
|
||||||
|
|
Loading…
Reference in New Issue