tests: Remove erroneous # before extern "C"
A few test header files have C++ guards around them, but are incorrect. Those files had a leading `#` placed before `extern`, which is incorrect. This commit simply removes those leading `#` characters. Signed-off-by: Brooks Prumo <brooks@prumo.org>
This commit is contained in:
parent
c58ca61a66
commit
e426c0c4e1
4 changed files with 4 additions and 4 deletions
|
@ -17,7 +17,7 @@
|
|||
#include <errno.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
#extern "C" {
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define TEST_FCB_FLASH_AREA_ID DT_FLASH_AREA_IMAGE_1_ID
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include <storage/flash_map.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
#extern "C" {
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define SETTINGS_TEST_FCB_VAL_STR_CNT 64
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#include "settings/settings.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
#extern "C" {
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
extern u8_t val8;
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include "settings/settings.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
#extern "C" {
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define SETTINGS_TEST_NVS_VAL_STR_CNT 64
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue