diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-06-15 14:04:25 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-06-15 14:04:25 +0900 |
| commit | 9e78fea7b3d2d0cb99d57913885fa48dc6843d09 (patch) | |
| tree | f51ffd8a1d00d15c6f03bf8693e9605d5904a340 | |
| parent | 195d1dd685124edf93735a751f8ec34a7bfe76c0 (diff) | |
| download | mruby-9e78fea7b3d2d0cb99d57913885fa48dc6843d09.tar.gz mruby-9e78fea7b3d2d0cb99d57913885fa48dc6843d09.zip | |
remove unreference Error class macros
| -rw-r--r-- | include/mruby.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/mruby.h b/include/mruby.h index 94fb44ad2..ef742cef4 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -438,13 +438,9 @@ void mrb_bug(const char *fmt, ...); #define E_NOMETHOD_ERROR (mrb_class_obj_get(mrb, "NoMethodError")) #define E_SCRIPT_ERROR (mrb_class_obj_get(mrb, "ScriptError")) #define E_SYNTAX_ERROR (mrb_class_obj_get(mrb, "SyntaxError")) -#define E_LOAD_ERROR (mrb_class_obj_get(mrb, "LoadError")) -#define E_SYSTEMCALL_ERROR (mrb_class_obj_get(mrb, "SystemCallError")) #define E_LOCALJUMP_ERROR (mrb_class_obj_get(mrb, "LocalJumpError")) #define E_REGEXP_ERROR (mrb_class_obj_get(mrb, "RegexpError")) -#define E_ZERODIVISION_ERROR (mrb_class_obj_get(mrb, "ZeroDivisionError")) -#define E_ENCODING_ERROR (mrb_class_obj_get(mrb, "EncodingError")) #define E_NOTIMP_ERROR (mrb_class_obj_get(mrb, "NotImplementedError")) #define E_FLOATDOMAIN_ERROR (mrb_class_obj_get(mrb, "FloatDomainError")) |
