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,9 +20,9 @@
* extension libraries. They could be written in C++98.
* @brief Defines #RBIMPL_HAS_ATTRIBUTE.
*/
#include "ruby/impl/config.h"
#include "ruby/impl/compiler_since.h"
#include "ruby/impl/token_paste.h"
#include "ruby/internal/config.h"
#include "ruby/internal/compiler_since.h"
#include "ruby/internal/token_paste.h"
#if defined(__has_attribute)
# if __has_attribute(pure) || RBIMPL_COMPILER_IS(GCC)

View file

@ -20,9 +20,9 @@
* extension libraries. They could be written in C++98.
* @brief Defines #RBIMPL_HAS_BUILTIN.
*/
#include "ruby/impl/config.h"
#include "ruby/impl/compiler_since.h"
#include "ruby/impl/token_paste.h"
#include "ruby/internal/config.h"
#include "ruby/internal/compiler_since.h"
#include "ruby/internal/token_paste.h"
#if defined(__has_builtin)
# if RBIMPL_COMPILER_IS(Intel)

View file

@ -20,9 +20,9 @@
* extension libraries. They could be written in C++98.
* @brief Defines #RBIMPL_HAS_CPP_ATTRIBUTE.
*/
#include "ruby/impl/compiler_is.h"
#include "ruby/impl/compiler_since.h"
#include "ruby/impl/token_paste.h"
#include "ruby/internal/compiler_is.h"
#include "ruby/internal/compiler_since.h"
#include "ruby/internal/token_paste.h"
/** @cond INTERNAL_MACRO */
#if defined(__has_cpp_attribute)

View file

@ -20,8 +20,8 @@
* extension libraries. They could be written in C++98.
* @brief Defines #RBIMPL_HAS_DECLSPEC_ATTRIBUTE.
*/
#include "ruby/impl/compiler_since.h"
#include "ruby/impl/token_paste.h"
#include "ruby/internal/compiler_since.h"
#include "ruby/internal/token_paste.h"
/** Wraps (or simulates) `__has_declspec_attribute`. */
#if defined(__has_declspec_attribute)

View file

@ -20,7 +20,7 @@
* extension libraries. They could be written in C++98.
* @brief Defines #RBIMPL_HAS_EXTENSION.
*/
#include "ruby/impl/has/feature.h"
#include "ruby/internal/has/feature.h"
/** Wraps (or simulates) `__has_extension`. */
#if defined(__has_extension)