| 835 | |
| 836 | template<typename... Args> |
| 837 | void Base::ConsoleSingleton::warning(const char* pMsg, Args&&... args) |
| 838 | { |
| 839 | warning(std::string(""), pMsg, std::forward<Args>(args)...); |
| 840 | } |
| 841 | |
| 842 | template<typename... Args> |
| 843 | void Base::ConsoleSingleton::warning(const std::string& notifier, const char* pMsg, Args&&... args) |