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

Signed-off-by: Dirk Thomas <dirk-thomas@users.noreply.github.com>
This commit is contained in:
Dirk Thomas 2020-02-04 11:41:49 -08:00 committed by GitHub
parent 0bc1281978
commit 1c500379ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 124 additions and 101 deletions

View file

@ -470,7 +470,8 @@ struct sertopic_rmw * create_sertopic(
struct sertopic_rmw * st = new struct sertopic_rmw;
#if DDSI_SERTOPIC_HAS_TOPICKIND_NO_KEY
std::string type_name = get_type_name(type_support_identifier, type_support);
ddsi_sertopic_init(static_cast<struct ddsi_sertopic *>(st), topicname,
ddsi_sertopic_init(
static_cast<struct ddsi_sertopic *>(st), topicname,
type_name.c_str(), &sertopic_rmw_ops, &serdata_rmw_ops, true);
#else
memset(st, 0, sizeof(struct ddsi_sertopic));