Ruby
3.5.0dev (2025-04-09 revision 8ab517698a76238d0afc7669b0ea1d5c6c1c0391)
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
Functions
Typedefs
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Functions
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerator
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
x
z
Functions
c
p
r
s
Variables
c
l
o
p
r
Typedefs
i
p
r
s
v
Enumerations
p
r
Enumerator
e
p
r
Macros
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
x
z
include
ruby
internal
compiler_is
intel.h
1
#ifndef RBIMPL_COMPILER_IS_INTEL_H
/*-*-C++-*-vi:se ft=cpp:*/
2
#define RBIMPL_COMPILER_IS_INTEL_H
22
#if ! defined(__INTEL_COMPILER)
23
# define RBIMPL_COMPILER_IS_Intel 0
24
25
#elif ! defined(__INTEL_COMPILER_UPDATE)
26
# define RBIMPL_COMPILER_IS_Intel 1
27
#
/* __INTEL_COMPILER = XXYZ */
28
# define RBIMPL_COMPILER_VERSION_MAJOR (__INTEL_COMPILER / 100)
29
# define RBIMPL_COMPILER_VERSION_MINOR (__INTEL_COMPILER % 100 / 10)
30
# define RBIMPL_COMPILER_VERSION_PATCH (__INTEL_COMPILER % 10)
31
32
#else
33
# define RBIMPL_COMPILER_IS_Intel 1
34
#
/* __INTEL_COMPILER = XXYZ */
35
# define RBIMPL_COMPILER_VERSION_MAJOR (__INTEL_COMPILER / 100)
36
# define RBIMPL_COMPILER_VERSION_MINOR (__INTEL_COMPILER % 100 / 10)
37
# define RBIMPL_COMPILER_VERSION_PATCH __INTEL_COMPILER_UPDATE
38
#endif
39
40
#endif
/* RBIMPL_COMPILER_IS_INTEL_H */
Generated by
1.9.8