Skip to content

Commit d73b795

Browse files
committed
Please linters
Signed-off-by: Ivan Santiago Paunovic <ivanpauno@ekumenlabs.com>
1 parent b93c40a commit d73b795

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

rcljava_common/include/rcljava_common/exceptions.hpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535
/**
3636
* \param env a JNIEnv pointer, used to check for exceptions.
3737
*/
38-
#define RCLJAVA_COMMON_CHECK_FOR_EXCEPTION(env) RCLJAVA_COMMON_CHECK_FOR_EXCEPTION_WITH_STATEMENT(env, return )
38+
#define RCLJAVA_COMMON_CHECK_FOR_EXCEPTION(env) \
39+
RCLJAVA_COMMON_CHECK_FOR_EXCEPTION_WITH_STATEMENT(env, return )
3940

4041
/// Call \ref rcljava_throw_rclexception if \a ret is not RCL_RET_OK,
4142
/// and execute \a error_statement in that case.
@@ -49,7 +50,8 @@
4950
* \a base_message can be either a `const char *` or as `std::string`.
5051
* \param error_statement statement executed if ret was not RCL_RET_OK.
5152
*/
52-
#define RCLJAVA_COMMON_THROW_FROM_RCL_WITH_ERROR_STATEMENT(env, ret, base_message, error_statement) \
53+
#define RCLJAVA_COMMON_THROW_FROM_RCL_WITH_ERROR_STATEMENT( \
54+
env, ret, base_message, error_statement) \
5355
do { \
5456
if (RCL_RET_OK != ret) { \
5557
rcljava_common::exceptions::rcljava_throw_rclexception( \

0 commit comments

Comments
 (0)