Fix missing header after stdlib update
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2022-05-26 10:07:18 +02:00
parent c559e60104
commit e1c5460db4
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 2 additions and 1 deletions

View File

@ -1,10 +1,11 @@
#ifndef CREATURELIB_HISTORYHOLDER_HPP
#define CREATURELIB_HISTORYHOLDER_HPP
#include <functional>
#include <utility>
#include "../../Library/Exceptions/CreatureException.hpp"
#include "HistoryElements/HistoryElement.hpp"
#include "HistoryElements/DamageHistory.hpp"
#include "HistoryElements/HistoryElement.hpp"
template <class T>
concept HistoryElementType = std::is_base_of<CreatureLib::Battling::HistoryElement, T>::value;