Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

syntax error corrections - rm unnecessary semicolons #12169

Merged
merged 1 commit into from
Jan 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hal/can_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const PinMap *can_rd_pinmap(void);
const PinMap *can_td_pinmap(void);

#ifdef __cplusplus
};
}
#endif

#endif // MBED_CAN_API_H
Expand Down
2 changes: 1 addition & 1 deletion hal/can_helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ struct CAN_Message {
typedef struct CAN_Message CAN_Message;

#ifdef __cplusplus
};
}
#endif

#endif
Expand Down
2 changes: 1 addition & 1 deletion hal/crc_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ uint32_t hal_crc_get_result(void);
/**@}*/

#ifdef __cplusplus
};
}
#endif

#endif // DEVICE_CRC
Expand Down
2 changes: 1 addition & 1 deletion platform/CircularBuffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ template<>
struct is_unsigned<unsigned long long> {
static const bool value = true;
};
};
}

/** \addtogroup platform-public-api */
/** @{*/
Expand Down
2 changes: 1 addition & 1 deletion platform/mbed_retarget.h
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ extern "C" {
int mkdir(const char *name, mode_t n);
#endif // !MBED_CONF_PLATFORM_STDIO_MINIMAL_CONSOLE_ONLY
#if __cplusplus
}; // extern "C"
} // extern "C"

namespace mbed {
#if !MBED_CONF_PLATFORM_STDIO_MINIMAL_CONSOLE_ONLY
Expand Down