Skip to content
Snippets Groups Projects
Verified Commit 6b5bcf00 authored by Martin Stump's avatar Martin Stump
Browse files

Fix arg names and docs


Signed-off-by: default avatarMartin Stump <martin.stump@mercedes-benz.com>
parent 6e58f0cb
No related branches found
No related tags found
1 merge request!165Add output stream operators for all common types
Pipeline #54598 passed with stage
in 0 seconds
......@@ -65,12 +65,12 @@ constexpr bool operator!=(const BoundingBox& lhs, const BoundingBox& rhs) noexce
/// Output stream operator for BoundingBox.
///
/// @param[in] os output stream
/// @param[in] bbox BoundingBox to be printed
/// @param[in] bounding_box BoundingBox to be printed
/// @returns output stream with printed BoundingBox
///
inline std::ostream& operator<<(std::ostream& os, const BoundingBox& bbox)
inline std::ostream& operator<<(std::ostream& os, const BoundingBox& bounding_box)
{
os << "BoundingBox(" << bbox.geometric_center << ", " << bbox.dimension << ")";
os << "BoundingBox(" << bounding_box.geometric_center << ", " << bounding_box.dimension << ")";
return os;
}
#endif // MANTLE_API_DISABLE_IOSTREAM
......
......@@ -59,7 +59,7 @@ constexpr bool operator!=(const Dimension3& lhs, const Dimension3& rhs) noexcept
/// Output stream operator for Dimension3.
///
/// @param[in] os output stream
/// @param[in] dim Dimension3 to be printed
/// @param[in] dimension Dimension3 to be printed
/// @returns output stream with printed Dimension3
///
inline std::ostream& operator<<(std::ostream& os, const Dimension3& dimension)
......
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