/* Copyright 2022 Luca Fedeli * * This file is part of WarpX. * * License: BSD-3-Clause-LBNL */ #ifndef WARPX_TEXT_MSG_H_ #define WARPX_TEXT_MSG_H_ #include #define WARPX_ALWAYS_ASSERT_WITH_MESSAGE(EX,MSG) (EX)?((void)0) : ablastr::utils::TextMsg::Assert( # EX , __FILE__, __LINE__ , MSG) namespace Utils::TextMsg { using namespace ablastr::utils::TextMsg; } // namespace Utils::TextMsg #endif // WARPX_TEXT_MSG_H_