diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-07-22 20:21:30 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-07-22 20:21:30 +0900 |
| commit | 87d1b2a910afd6c1eb60427fac9a7d0b01335c48 (patch) | |
| tree | 0115a4f07952d267828855370025226df05864e3 | |
| parent | 949f6f53248c1679bb14229777a064c0fe383b6a (diff) | |
| download | mruby-87d1b2a910afd6c1eb60427fac9a7d0b01335c48.tar.gz mruby-87d1b2a910afd6c1eb60427fac9a7d0b01335c48.zip | |
Improve conflict error message of `Time` and `Math`; ref #4576
| -rw-r--r-- | mrbgems/mruby-math/src/math.c | 2 | ||||
| -rw-r--r-- | mrbgems/mruby-time/src/time.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-math/src/math.c b/mrbgems/mruby-math/src/math.c index 35fcd0fa6..c6d4ca414 100644 --- a/mrbgems/mruby-math/src/math.c +++ b/mrbgems/mruby-math/src/math.c @@ -5,7 +5,7 @@ */ #ifdef MRB_WITHOUT_FLOAT -# error Conflict 'MRB_WITHOUT_FLOAT' configuration in your 'build_config.rb' +# error Math conflicts 'MRB_WITHOUT_FLOAT' configuration in your 'build_config.rb' #endif #include <mruby.h> diff --git a/mrbgems/mruby-time/src/time.c b/mrbgems/mruby-time/src/time.c index 4f0afd6c6..933689426 100644 --- a/mrbgems/mruby-time/src/time.c +++ b/mrbgems/mruby-time/src/time.c @@ -5,7 +5,7 @@ */ #ifdef MRB_WITHOUT_FLOAT -# error Conflict 'MRB_WITHOUT_FLOAT' configuration in your 'build_config.rb' +# error Time conflicts 'MRB_WITHOUT_FLOAT' configuration in your 'build_config.rb' #endif #include <math.h> |
