eclipse-uprotocol / up-cpp

uProtocol Language Specific Library for C++
Apache License 2.0
18 stars 26 forks source link

clang-tidy: Ignored function return values in tests #269

Open billpittman opened 3 months ago

billpittman commented 3 months ago

/data/ultifi/up-cpp/test/coverage/datamodel/UUriSerializerTest.cpp /data/ultifi/up-cpp/test/coverage/datamodel/UuidSerializerTest.cpp

Several tests ignore function return values and that cause errors for clang-tidy.

gregmedd commented 3 months ago

std::ignore = calledFunction() seems to be the recommended way to deal with this.