clang-tidy reports:
'NOLINTBEGIN' comment without a subsequent 'NOLINTEND' comment
If a specific warning is mentionned as part of the NOLINTBEGIN clause, it must
also be mentionned in the matching NOLINTEND clause. Otherwise, clang-tidy
doesn't match them.
Change-Id: I6adef610227b162ba8a5715c3b426e4c49a1b346
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
c_string_view(const std::string& str) noexcept : _str{ str.c_str() }
{
}
- /* NOLINTEND */
+ /* NOLINTEND(google-explicit-constructor) */
/*
* Makes this view view the C string `str` (may be `nullptr`).