Remove unused #include in complex.c and rational.c

This commit is contained in:
KOBAYASHI Shuji
2021-04-20 16:42:40 +09:00
parent ff366b65eb
commit c6911c54e5
2 changed files with 0 additions and 5 deletions
-2
View File
@@ -19,8 +19,6 @@ struct mrb_complex {
mrb_float imaginary;
};
#include <mruby/istruct.h>
#if defined(MRB_32BIT) && !defined(MRB_USE_FLOAT32)
struct RComplex {
-3
View File
@@ -1,6 +1,5 @@
#include <mruby.h>
#include <mruby/class.h>
#include <mruby/string.h>
#include <mruby/numeric.h>
#include <mruby/presym.h>
@@ -9,8 +8,6 @@ struct mrb_rational {
mrb_int denominator;
};
#include <mruby/istruct.h>
#if defined(MRB_INT64) && defined(MRB_32BIT)
struct RRational {
MRB_OBJECT_HEADER;