Skip to content

Commit

Permalink
Add a newline
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Simmons <[email protected]>
  • Loading branch information
linuxrocks123 committed Sep 12, 2024
1 parent 08cf16f commit 8200beb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/gc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ static void maybe_initialize_gc() {
void *operator new(std::size_t size) __attribute__((used));
void *operator new(std::size_t size, const std::nothrow_t &) noexcept __attribute__((used));
void *operator new(std::size_t size, std::align_val_t alignment) __attribute__((used));
void *operator new(std::size_t size, std::align_val_t alignment, const std::nothrow_t &) noexcept __attribute__((used));
void *operator new(std::size_t size, std::align_val_t alignment, const std::nothrow_t &)
noexcept __attribute__((used));
void operator delete(void *p) noexcept __attribute__((used));
void operator delete(void *p, std::size_t /*size*/) noexcept __attribute__((used));
void operator delete(void *p, std::size_t, std::align_val_t) noexcept __attribute__((used));
Expand Down

0 comments on commit 8200beb

Please sign in to comment.