diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-06-01 21:26:57 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-06-01 21:26:57 +0900 |
| commit | aec40d10b86e4e372aaadbd6d4dc84664a291c3e (patch) | |
| tree | 91016e6eb79f86fc58cd74850261a8e09b537f68 | |
| parent | d5cca2bdb2a0352e3253cf3ba2a79157dde5f163 (diff) | |
| parent | 89ceb3e7baf54cc3360a76c94b02249e7afc491e (diff) | |
| download | mruby-aec40d10b86e4e372aaadbd6d4dc84664a291c3e.tar.gz mruby-aec40d10b86e4e372aaadbd6d4dc84664a291c3e.zip | |
Merge pull request #5017 from RoryO/master
Fix float constant redefinition warnings
| -rw-r--r-- | include/mruby.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mruby.h b/include/mruby.h index af7503375..2fd075112 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -76,6 +76,7 @@ #include <mruby/version.h> #ifndef MRB_WITHOUT_FLOAT +#include <float.h> #ifndef FLT_EPSILON #define FLT_EPSILON (1.19209290e-07f) #endif |
