diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-02-01 17:35:09 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-02-01 17:35:09 -0800 |
| commit | dfff732318395c7dc2a01ba64bafd1bd46bf454d (patch) | |
| tree | 4e5706642d4a3f43b31b23d3aca933436e8c6297 /src/math.c | |
| parent | c7f2911792e3ffee627bf97431fecd5bbae4b4de (diff) | |
| parent | 54eb08e2fc04dece78e0a900ea25f936631ff6d1 (diff) | |
| download | mruby-dfff732318395c7dc2a01ba64bafd1bd46bf454d.tar.gz mruby-dfff732318395c7dc2a01ba64bafd1bd46bf454d.zip | |
Merge pull request #810 from masamitsu-murase/remove_semicolon_from_function_type_macro
Remove ";" suffix from function-type macros.
Diffstat (limited to 'src/math.c')
| -rw-r--r-- | src/math.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math.c b/src/math.c index 3e4550946..782b75c97 100644 --- a/src/math.c +++ b/src/math.c @@ -11,7 +11,7 @@ #include <math.h> #define domain_error(msg) \ - mrb_raise(mrb, E_RANGE_ERROR, "Numerical argument is out of domain - " #msg); + mrb_raise(mrb, E_RANGE_ERROR, "Numerical argument is out of domain - " #msg) /* math functions not provided under Microsoft Visual C++ */ #ifdef _MSC_VER |
