Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Since we indent the arguments after a newline, this prevents a visual dedent when using a braced argument: BAD: ``` ASSERT_THROW( { auto client = node->create_client<ListParameters>( "invalid_service?" ); }, rclcpp::exceptions::InvalidServiceNameError ); ``` GOOD: ``` ASSERT_THROW( { auto client = node->create_client<ListParameters>( "invalid_service?" ); }, rclcpp::exceptions::InvalidServiceNameError ); ``` Signed-off-by: Dan Rose <dan@digilabs.io>
- Loading branch information