Skip to content
Snippets Groups Projects
Commit 7a7f94c9 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

clang-tidy: fix incorrect conversion unsigned->int

parent b1decdf0
No related branches found
No related tags found
1 merge request!179C casts to C++ casts redesign
...@@ -19,7 +19,7 @@ std::ostream & operator <<( std::ostream & os, const MeasurementFrame & frame ) ...@@ -19,7 +19,7 @@ std::ostream & operator <<( std::ostream & os, const MeasurementFrame & frame )
   
os << "(" << frame.name << ", " << frame.type << ", " << frame.parentIdx << ", ["; os << "(" << frame.name << ", " << frame.type << ", " << frame.parentIdx << ", [";
bool first = true; bool first = true;
for ( int subId : frame.subIdxs ) { for ( unsigned subId : frame.subIdxs ) {
if ( first ) if ( first )
first = false; first = false;
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment