1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

sed -i 's|ruby/impl|ruby/internal|'

To fix build failures.
This commit is contained in:
卜部昌平 2020-05-08 18:31:09 +09:00
parent b85fd1d690
commit 9e41a75255
Notes: git 2020-05-11 09:24:41 +09:00
330 changed files with 43662 additions and 43662 deletions

View file

@ -20,12 +20,12 @@
* extension libraries. They could be written in C++98.
* @brief Defines #NEWOBJ.
*/
#include "ruby/impl/cast.h"
#include "ruby/impl/core/rbasic.h"
#include "ruby/impl/dllexport.h"
#include "ruby/impl/fl_type.h"
#include "ruby/impl/special_consts.h"
#include "ruby/impl/value.h"
#include "ruby/internal/cast.h"
#include "ruby/internal/core/rbasic.h"
#include "ruby/internal/dllexport.h"
#include "ruby/internal/fl_type.h"
#include "ruby/internal/special_consts.h"
#include "ruby/internal/value.h"
#include "ruby/assert.h"
#define RB_NEWOBJ(obj,type) type *(obj) = RBIMPL_CAST((type *)rb_newobj())