Skip to content

Commit c1fd8b6

Browse files
committed
Remove pre C++11 support
C++14 is now required to build lutok. Remove all pre-C++11 oxbow code. Submitted by: Minsoo Choo <[email protected]> Signed-off-by: Enji Cooper <[email protected]>
1 parent 143eedc commit c1fd8b6

File tree

2 files changed

+1
-18
lines changed

2 files changed

+1
-18
lines changed

debug.hpp

-8
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,7 @@
3333
#define LUTOK_DEBUG_HPP
3434

3535
#include <string>
36-
#if defined(_LIBCPP_VERSION) || __cplusplus >= 201103L
3736
#include <memory>
38-
#else
39-
#include <tr1/memory>
40-
#endif
4137

4238
namespace lutok {
4339

@@ -59,11 +55,7 @@ class debug {
5955
struct impl;
6056

6157
/// Pointer to the shared internal implementation.
62-
#if defined(_LIBCPP_VERSION) || __cplusplus >= 201103L
6358
std::shared_ptr< impl > _pimpl;
64-
#else
65-
std::tr1::shared_ptr< impl > _pimpl;
66-
#endif
6759

6860
public:
6961
debug(void);

state.hpp

+1-10
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,8 @@
3232
#if !defined(LUTOK_STATE_HPP)
3333
#define LUTOK_STATE_HPP
3434

35-
#include <string>
36-
37-
#if defined(_LIBCPP_VERSION) || __cplusplus >= 201103L
3835
#include <memory>
39-
#else
40-
#include <tr1/memory>
41-
#endif
36+
#include <string>
4237

4338
namespace lutok {
4439

@@ -77,11 +72,7 @@ class state {
7772
struct impl;
7873

7974
/// Pointer to the shared internal implementation.
80-
#if defined(_LIBCPP_VERSION) || __cplusplus >= 201103L
8175
std::shared_ptr< impl > _pimpl;
82-
#else
83-
std::tr1::shared_ptr< impl > _pimpl;
84-
#endif
8576

8677
void* new_userdata_voidp(const size_t);
8778
void* to_userdata_voidp(const int);

0 commit comments

Comments
 (0)