feature deprecated: fix astyle coding style

pull/8591/head
Martin Kojtal 2018-10-30 15:09:33 +00:00
parent f2d30978e0
commit 7bd258154d
2 changed files with 8 additions and 2 deletions

View File

@ -21,4 +21,7 @@
MBED_DEPRECATED_SINCE("5.10", "FEATURE_LWIP is deprecated. You do not need to enable it anymore in mbed_app.json")
static void feature_lwip(void) { }
void dummy_feature_lwip_is_deprecated(void) { feature_lwip(); }
void dummy_feature_lwip_is_deprecated(void)
{
feature_lwip();
}

View File

@ -21,4 +21,7 @@
MBED_DEPRECATED_SINCE("5.10", "FEATURE_NANOSTACK is deprecated. You do not need to enable it anymore in mbed_app.json")
static void feature_nanostack(void) { }
void dummy_feature_nanostack_is_deprecated(void) { feature_nanostack(); }
void dummy_feature_nanostack_is_deprecated(void)
{
feature_nanostack();
}