summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-io
diff options
context:
space:
mode:
authordearblue <[email protected]>2020-04-24 21:13:40 +0900
committerdearblue <[email protected]>2020-04-24 21:47:20 +0900
commit095aae5e2c2e70e32bcd3def3f6d2cab37bca6d5 (patch)
treef4fdfa069fb69943c6f681db44e5f3a93a0d133b /mrbgems/mruby-io
parentd3a02a297f5a2a7a7f5951168bd837e3733a3071 (diff)
downloadmruby-095aae5e2c2e70e32bcd3def3f6d2cab37bca6d5.tar.gz
mruby-095aae5e2c2e70e32bcd3def3f6d2cab37bca6d5.zip
Removed comments mentioning `MRB_WITHOUT_FLOAT`; ref 2e661e8
The comment is for messages when `MRB_INT16` and `MRB_WITHOUT_FLOAT` are specified at the same time. The comment itself is no longer needed now that `MRB_INT16` is gone.
Diffstat (limited to 'mrbgems/mruby-io')
-rw-r--r--mrbgems/mruby-io/include/mruby/ext/io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-io/include/mruby/ext/io.h b/mrbgems/mruby-io/include/mruby/ext/io.h
index 6fa0eb4d3..da76ac769 100644
--- a/mrbgems/mruby-io/include/mruby/ext/io.h
+++ b/mrbgems/mruby-io/include/mruby/ext/io.h
@@ -50,8 +50,8 @@ struct mrb_io {
#define MRB_O_SHARE_DELETE 0x1000
#define MRB_O_TMPFILE 0x2000
#define MRB_O_NOATIME 0x4000
-#define MRB_O_DSYNC 0x00008000 /* Ignored with MRB_WITHOUT_FLOAT */
-#define MRB_O_RSYNC 0x00010000 /* Ignored with MRB_WITHOUT_FLOAT */
+#define MRB_O_DSYNC 0x00008000
+#define MRB_O_RSYNC 0x00010000
#define MRB_O_RDONLY_P(f) ((mrb_bool)(((f) & MRB_O_ACCMODE) == MRB_O_RDONLY))
#define MRB_O_WRONLY_P(f) ((mrb_bool)(((f) & MRB_O_ACCMODE) == MRB_O_WRONLY))