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

@ -18,7 +18,7 @@ namespace sprout {
namespace math {
namespace detail {
# define SPROUT_BERNOULLI_TABLE_DEF_FLOAT \
table_type{{ \
{{ \
1.F, \
1.F / 6, \
-1.F / 30, \
@ -54,7 +54,7 @@ namespace sprout {
-2.09380059113463784091e38F \
}}
# define SPROUT_BERNOULLI_TABLE_DEF_DOUBLE \
table_type{{ \
{{ \
1., \
1. / 6, \
-1. / 30, \
@ -108,7 +108,7 @@ namespace sprout {
-2.838224957069370695926e78 \
}}
# define SPROUT_BERNOULLI_TABLE_DEF_LONG_DOUBLE \
table_type{{ \
{{ \
1.L, \
1.L / 6, \
-1.L / 30, \