Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
hnwyllmm committed Nov 16, 2023
1 parent d425b06 commit 731df30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion deps/common/lang/lower_bound.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class BinaryIterator
BinaryIterator operator--(int)
{
BinaryIterator tmp(*this);
this->operator+=(-1);
*this += -1;
return tmp;
}

Expand Down
1 change: 1 addition & 0 deletions deps/common/mm/debug_new.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ void operator delete[](void *); // MSVC 6 requires this declaration
#ifdef DEBUG_NEW_EMULATE_MALLOC

#define malloc(s) ((void *)(debug_new char[s]))

#define free(p) delete[] (char *)(p)
#endif // DEBUG_NEW_EMULATE_MALLOC

Expand Down

0 comments on commit 731df30

Please sign in to comment.