Unverified Commit bd661152 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #5418 from shuujii/remove-unused--include-in-complex.c-and-rational.c

Remove unused `#include` in `complex.c` and `rational.c`
parents ca744e77 c6911c54
......@@ -19,8 +19,6 @@ struct mrb_complex {
mrb_float imaginary;
};
#include <mruby/istruct.h>
#if defined(MRB_32BIT) && !defined(MRB_USE_FLOAT32)
struct RComplex {
......
#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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment