mgmt: mcumgr: smp_dummy: Add missing conditional end bracket

Compiling smp_dummy.h for C++ is currently
not possible due to a missing end curly bracket.

This commit add the missing end bracket on the same
condition as the start bracket is included.

Signed-off-by: Casper Jørgensen <casperej@gmail.com>
This commit is contained in:
Casper Jørgensen 2023-08-29 15:53:49 +02:00 committed by Carles Cufí
parent faee29c229
commit 2ad0c90e87

View file

@ -98,4 +98,8 @@ void smp_dummy_disable(void);
*/
bool smp_dummy_get_status(void);
#ifdef __cplusplus
}
#endif
#endif /* ZEPHYR_INCLUDE_MGMT_MCUMGR_TRANSPORT_DUMMY_H_ */