mirror of
https://github.com/neovim/neovim.git
synced 2025-10-03 00:18:33 +00:00
@@ -145,7 +145,7 @@
|
||||
} while (0)
|
||||
#else
|
||||
# define STRICT_ADD(a, b, c, t) \
|
||||
do { *(c) = (t)(a + b); } while (0)
|
||||
do { *(c) = (t)((a) + (b)); } while (0)
|
||||
#endif
|
||||
|
||||
/// @def STRICT_SUB
|
||||
@@ -160,7 +160,7 @@
|
||||
} while (0)
|
||||
#else
|
||||
# define STRICT_SUB(a, b, c, t) \
|
||||
do { *(c) = (t)(a - b); } while (0)
|
||||
do { *(c) = (t)((a) - (b)); } while (0)
|
||||
#endif
|
||||
|
||||
#endif // NVIM_ASSERT_H
|
||||
|
Reference in New Issue
Block a user