Skip to content

Commit 069373b

Browse files
committed
NOLINTNEXTLINE
1 parent d0f622e commit 069373b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/viam/sdk/common/utils.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,10 @@ bool from_dm_from_extra(const ProtoStruct& extra) {
125125

126126
std::pair<std::string, std::string> long_name_to_remote_and_short(const std::string& long_name) {
127127
std::vector<std::string> name_parts;
128+
// boost::split causes a clang-tidy false positive, see
129+
// https://bugs.llvm.org/show_bug.cgi?id=41141
130+
//
131+
// NOLINTNEXTLINE
128132
boost::split(name_parts, long_name, boost::is_any_of(":"));
129133
auto name = name_parts.back();
130134
name_parts.pop_back();

0 commit comments

Comments
 (0)