| 9 | { |
| 10 | } |
| 11 | void MessageStack::Add(const std::vector<Message>& msgs) |
| 12 | { |
| 13 | m_msgs.insert(m_msgs.end(), msgs.begin(), msgs.end()); |
| 14 | } |
| 15 | void MessageStack::Add(Type type, const std::string& group, const std::string& message, int ln, ShaderStage sh) |
| 16 | { |
| 17 | m_msgs.push_back({ type, group, message, ln, sh }); |
no test coverage detected