diff --git a/Runtime/Particle/CWeaponDescription.hpp b/Runtime/Particle/CWeaponDescription.hpp index b6a1c2852..29e5d1692 100644 --- a/Runtime/Particle/CWeaponDescription.hpp +++ b/Runtime/Particle/CWeaponDescription.hpp @@ -18,7 +18,7 @@ struct SCollisionResponseData { bool m_found = false; SCollisionResponseData() = default; SCollisionResponseData(CToken&& tok, bool found) : m_res(std::move(tok)), m_found(found) {} - operator bool() const { return m_found; } + explicit operator bool() const { return m_found; } }; class CWeaponDescription {