code style only: wrap after open parenthesis if not in one line (#565)

Signed-off-by: Dirk Thomas <dirk-thomas@users.noreply.github.com>
This commit is contained in:
Dirk Thomas 2020-02-03 09:06:35 -08:00 committed by GitHub
parent 7537f83044
commit 4b9c0a30be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
43 changed files with 944 additions and 538 deletions

View file

@ -43,7 +43,8 @@ public:
rcl_init_options_t init_options = rcl_get_zero_initialized_init_options();
ret = rcl_init_options_init(&init_options, rcl_get_default_allocator());
ASSERT_EQ(RCL_RET_OK, ret) << rcl_get_error_string().str;
OSRF_TESTING_TOOLS_CPP_SCOPE_EXIT({
OSRF_TESTING_TOOLS_CPP_SCOPE_EXIT(
{
EXPECT_EQ(RCL_RET_OK, rcl_init_options_fini(&init_options)) << rcl_get_error_string().str;
});
this->context_ptr = new rcl_context_t;