Remove issue for Windows build.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2020-04-09 18:38:00 +02:00
parent 88eda6ef94
commit 7194d3f4f8
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ namespace CreatureLib::Library {
Arbutils::CaseInsensitiveConstString _effectName;
public:
constexpr SecondaryEffect() noexcept : _chance(0), _effectName(""_cnc) {}
SecondaryEffect() noexcept : _chance(0), _effectName(Arbutils::CaseInsensitiveConstString("")) {}
SecondaryEffect(float chance, const Arbutils::CaseInsensitiveConstString& effectName) noexcept
: _chance(chance), _effectName(effectName) {}