1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

fix delete extra ';'

This commit is contained in:
bolero-MURAKAMI 2012-04-17 03:00:51 +09:00
parent e5391d339c
commit c532099a35
6 changed files with 9 additions and 9 deletions

View file

@ -13,7 +13,7 @@ namespace sprout {
# define SPROUT_DIV_T_TRAITS_IMPL(DIV_T) \
typedef DIV_T type; \
static SPROUT_CONSTEXPR std::size_t offsetof_quot = offsetof(DIV_T, quot); \
static SPROUT_CONSTEXPR std::size_t offsetof_rem = offsetof(DIV_T, rem);
static SPROUT_CONSTEXPR std::size_t offsetof_rem = offsetof(DIV_T, rem)
template<typename T>
struct div_t_traits {};