File tree 2 files changed +1
-18
lines changed
2 files changed +1
-18
lines changed Original file line number Diff line number Diff line change 33
33
#define LUTOK_DEBUG_HPP
34
34
35
35
#include < string>
36
- #if defined(_LIBCPP_VERSION) || __cplusplus >= 201103L
37
36
#include < memory>
38
- #else
39
- #include < tr1/memory>
40
- #endif
41
37
42
38
namespace lutok {
43
39
@@ -59,11 +55,7 @@ class debug {
59
55
struct impl ;
60
56
61
57
// / Pointer to the shared internal implementation.
62
- #if defined(_LIBCPP_VERSION) || __cplusplus >= 201103L
63
58
std::shared_ptr< impl > _pimpl;
64
- #else
65
- std::tr1::shared_ptr< impl > _pimpl;
66
- #endif
67
59
68
60
public:
69
61
debug (void );
Original file line number Diff line number Diff line change 32
32
#if !defined(LUTOK_STATE_HPP)
33
33
#define LUTOK_STATE_HPP
34
34
35
- #include < string>
36
-
37
- #if defined(_LIBCPP_VERSION) || __cplusplus >= 201103L
38
35
#include < memory>
39
- #else
40
- #include < tr1/memory>
41
- #endif
36
+ #include < string>
42
37
43
38
namespace lutok {
44
39
@@ -77,11 +72,7 @@ class state {
77
72
struct impl ;
78
73
79
74
// / Pointer to the shared internal implementation.
80
- #if defined(_LIBCPP_VERSION) || __cplusplus >= 201103L
81
75
std::shared_ptr< impl > _pimpl;
82
- #else
83
- std::tr1::shared_ptr< impl > _pimpl;
84
- #endif
85
76
86
77
void * new_userdata_voidp (const size_t );
87
78
void * to_userdata_voidp (const int );
You can’t perform that action at this time.
0 commit comments