Commit b1871cf4 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #2804 from take-cheeze/mruby_throw_h

Move "src/mrb_throw.h" to "include/mruby/throw.h".
parents f7090549 6498d90f
/*
** mrb_throw.h - mruby exception throwing handler
** mruby/throw.h - mruby exception throwing handler
**
** See Copyright Notice in mruby.h
*/
......
......@@ -17,7 +17,7 @@
#include "node.h"
#include "mruby/opcode.h"
#include "mruby/re.h"
#include "mrb_throw.h"
#include "mruby/throw.h"
typedef mrb_ast_node node;
typedef struct mrb_parser_state parser_state;
......
......@@ -16,7 +16,7 @@
#include "mruby/debug.h"
#include "mruby/error.h"
#include "mruby/class.h"
#include "mrb_throw.h"
#include "mruby/throw.h"
MRB_API mrb_value
mrb_exc_new(mrb_state *mrb, struct RClass *c, const char *ptr, size_t len)
......
......@@ -27,7 +27,7 @@
#include "mruby/proc.h"
#include "mruby/error.h"
#include "node.h"
#include "mrb_throw.h"
#include "mruby/throw.h"
#define YYLEX_PARAM p
......
......@@ -20,7 +20,7 @@
#include "mruby/error.h"
#include "mruby/opcode.h"
#include "value_array.h"
#include "mrb_throw.h"
#include "mruby/throw.h"
#ifndef ENABLE_STDIO
#if defined(__cplusplus)
......
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