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

fix for ICC: aggregate initialization

This commit is contained in:
bolero-MURAKAMI 2014-02-21 23:43:24 +09:00
parent 1cfea12064
commit eae1729128
11 changed files with 23 additions and 21 deletions

View file

@ -72,7 +72,7 @@ namespace sprout {
struct bvalues;
# define SPROUT_WEED_BDIGITS_TABLE_DEF \
table_type{{0, 1}}
{{0, 1}}
template<>
struct bvalues<void> {

View file

@ -72,7 +72,7 @@ namespace sprout {
struct values;
# define SPROUT_WEED_DIGITS_TABLE_DEF \
table_type{{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}}
{{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}}
template<>
struct values<void> {

View file

@ -72,7 +72,7 @@ namespace sprout {
struct ovalues;
# define SPROUT_WEED_ODIGITS_TABLE_DEF \
table_type{{0, 1, 2, 3, 4, 5, 6, 7}}
{{0, 1, 2, 3, 4, 5, 6, 7}}
template<>
struct ovalues<void> {

View file

@ -72,7 +72,7 @@ namespace sprout {
struct xvalues;
# define SPROUT_WEED_XDIGITS_TABLE_DEF \
table_type{{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 10, 11, 12, 13, 14, 15}}
{{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 10, 11, 12, 13, 14, 15}}
template<>
struct xvalues<void> {