Skip to content

Commit

Permalink
Consistently require a semicolon after DOUBLE_CONVERSION_ASSERT (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
nico authored Oct 4, 2021
1 parent 44944ac commit 1623566
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion double-conversion/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include <cassert>
#ifndef DOUBLE_CONVERSION_ASSERT
#define DOUBLE_CONVERSION_ASSERT(condition) \
assert(condition);
assert(condition)
#endif
#ifndef DOUBLE_CONVERSION_UNIMPLEMENTED
#define DOUBLE_CONVERSION_UNIMPLEMENTED() (abort())
Expand Down

0 comments on commit 1623566

Please sign in to comment.