cppcheck-suppress noExplicitConstructor
| 79 | { |
| 80 | // cppcheck-suppress noExplicitConstructor |
| 81 | View(const char* data) |
| 82 | : mData(data) |
| 83 | , mSize(strlen(data)) |
| 84 | {} |
| 85 | |
| 86 | // only provide when std::span is not available so using untyped initialization won't use View |
| 87 | #if !defined(__cpp_lib_span) |