blob: f32dcd0b8068e72d6566ea9a4e6b6492fbe2e7fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// cpp11 version: 0.3.1.1
// vendored on: 2021-08-11
#pragma once
#ifdef R_INTERNALS_H_
#if !(defined(R_NO_REMAP) && defined(STRICT_R_HEADERS))
#error R headers were included before cpp11 headers \
and at least one of R_NO_REMAP or STRICT_R_HEADERS \
was not defined.
#endif
#endif
#define R_NO_REMAP
#define STRICT_R_HEADERS
#include "Rinternals.h"
// clang-format off
#ifdef __clang__
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wattributes"
#endif
#ifdef __GNUC__
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wattributes"
#endif
// clang-format on
#include "cpp11/altrep.hpp"
namespace cpp11 {
namespace literals {
constexpr R_xlen_t operator"" _xl(unsigned long long int value) { return value; }
} // namespace literals
template <typename T>
inline T na();
template <typename T>
inline bool is_na(const T& value) {
return value == na<T>();
}
} // namespace cpp11
|