Skip to content

Commit

Permalink
crnlib: fix -Wpedantic: extra ‘;’ in macro
Browse files Browse the repository at this point in the history
  • Loading branch information
illwieckz committed Jul 4, 2024
1 parent e500bb7 commit d92ff75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crnlib/crn_helpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#define CRNLIB_NO_COPY_OR_ASSIGNMENT_OP(c) \
c(const c&); \
c& operator=(const c&);
c& operator=(const c&)
#define CRNLIB_NO_HEAP_ALLOC() \
private: \
static void* operator new(size_t); \
Expand Down

0 comments on commit d92ff75

Please sign in to comment.