Skip to content

Commit

Permalink
Remove additional semicolon (#496)
Browse files Browse the repository at this point in the history
  • Loading branch information
armallen authored Nov 20, 2024
1 parent 8d6a028 commit 13a56a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/albatross/src/core/parameter_macros.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@
#define DECLARE_PARAMS(...) CALL_MACRO_X_FOR_EACH(DECLARE_PARAM, ##__VA_ARGS__)

#define ALBATROSS_DECLARE_PARAMS(...) \
DEFINE_GET_PARAMS(__VA_ARGS__); \
DEFINE_SET_PARAM(__VA_ARGS__); \
DECLARE_PARAMS(__VA_ARGS__);
DEFINE_GET_PARAMS(__VA_ARGS__) \
DEFINE_SET_PARAM(__VA_ARGS__) \
DECLARE_PARAMS(__VA_ARGS__)

#endif

0 comments on commit 13a56a1

Please sign in to comment.