Skip to content

Commit

Permalink
Fix breaks for TSAN tests (#80)
Browse files Browse the repository at this point in the history
* Fix breaks for TSAN tests

Signed-off-by: Lucia Echevarria <[email protected]>

* Remove blank spaces

Signed-off-by: Lucia Echevarria <[email protected]>

---------

Signed-off-by: Lucia Echevarria <[email protected]>
  • Loading branch information
LuciaEchevarria99 authored and Tempate committed Mar 8, 2024
1 parent f24cb64 commit 9bbe5bd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions ddspipe_core/src/cpp/types/dynamic_types/schema_idl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,6 @@ utils::TreeNode<TreeNodeType> generate_dyn_type_tree(
}
return parent;
}
break;

case fastrtps::types::TK_ARRAY:
case fastrtps::types::TK_SEQUENCE:
Expand All @@ -280,11 +279,9 @@ utils::TreeNode<TreeNodeType> generate_dyn_type_tree(

return container;
}
break;

default:
return utils::TreeNode<TreeNodeType>(member_name, type_kind_to_str(type), type);
break;
}
}

Expand Down
3 changes: 0 additions & 3 deletions ddspipe_core/src/cpp/types/dynamic_types/schema_msg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@ utils::TreeNode<TreeNodeType> generate_dyn_type_tree(
}
return parent;
}
break;

case fastrtps::types::TK_ARRAY:
case fastrtps::types::TK_SEQUENCE:
Expand All @@ -249,11 +248,9 @@ utils::TreeNode<TreeNodeType> generate_dyn_type_tree(

return container;
}
break;

default:
return utils::TreeNode<TreeNodeType>(member_name, type_kind_to_str(type));
break;
}
}

Expand Down

0 comments on commit 9bbe5bd

Please sign in to comment.