Skip to content

Commit 50f334a

Browse files
authored
Cleanup __cplusplus checks (#1371)
* define C++11 advanced exceptions unconditionally * remove pre-C++11 paths based on __cplusplus checks * remove RCPP_HAS_LONG_LONG_TYPES checks
1 parent 30edbf5 commit 50f334a

14 files changed

+68
-363
lines changed

ChangeLog

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,32 @@
1+
2025-03-24 Iñaki Ucar <[email protected]>
2+
3+
* inst/include/Rcpp/exceptions.h: Include C+11 variadic template definitions
4+
unconditionally
5+
* inst/include/Rcpp/exceptions/cpp11/exceptions.h: Removed
6+
* inst/include/Rcpp/exceptions/cpp98/exceptions.h: Idem
7+
8+
* src/attributes.cpp: Remove obsolete pre-C+11 paths based on __cplusplus
9+
define checks
10+
* inst/tinytest/cpp/sugar.cpp: Idem
11+
* inst/include/Rcpp/Language.h: Idem
12+
* inst/include/Rcpp/StringTransformer.h: Idem
13+
* inst/include/Rcpp/algorithm.h: Idem
14+
* inst/include/Rcpp/utils/tinyformat.h: Idem
15+
* inst/include/Rcpp/longlong.h: Idem, unconditional RCPP_HAS_LONG_LONG_TYPES
16+
17+
* src/api.cpp: Remove explicit RCPP_HAS_LONG_LONG_TYPES as availability is
18+
both implicit and ensured
19+
* inst/include/Rcpp/algorithm.h: Idem
20+
* inst/include/Rcpp/traits/is_arithmetic.h: Idem
21+
* inst/include/Rcpp/traits/longlong.h: Idem
22+
123
2025-03-21 Dirk Eddelbuettel <[email protected]>
224

325
* DESCRIPTION (Version, Date): Roll micro version and date
426
* inst/include/Rcpp/config.h: Idem
527

628
* inst/include/Rcpp/String.h: Remove explicit RCPP_USING_CXX11 as
7-
use of C++11 (or newer) is both implicit and ensuredIdem
29+
use of C++11 (or newer) is both implicit and ensured
830
* inst/include/Rcpp/macros/dispatch.h: Idem
931
* inst/include/Rcpp/platform/compiler.h: Idem
1032
* inst/include/Rcpp/unwindProtect.h: Idem

inst/include/Rcpp/Language.h

-8
Original file line numberDiff line numberDiff line change
@@ -186,11 +186,7 @@ namespace Rcpp{
186186
};
187187

188188
template <typename T, typename RESULT_TYPE = SEXP>
189-
#if __cplusplus < 201103L
190-
class unary_call : public std::unary_function<T,RESULT_TYPE> {
191-
#else
192189
class unary_call : public std::function<RESULT_TYPE(T)> {
193-
#endif
194190
public:
195191
unary_call( Language call_ ) : call(call_), proxy(call_,1) {}
196192
unary_call( Language call_, R_xlen_t index ) : call(call_), proxy(call_,index){}
@@ -207,11 +203,7 @@ namespace Rcpp{
207203
};
208204

209205
template <typename T1, typename T2, typename RESULT_TYPE = SEXP>
210-
#if __cplusplus < 201103L
211-
class binary_call : public std::binary_function<T1,T2,RESULT_TYPE> {
212-
#else
213206
class binary_call : public std::function<RESULT_TYPE(T1,T2)> {
214-
#endif
215207
public:
216208
binary_call( Language call_ ) : call(call_), proxy1(call_,1), proxy2(call_,2) {}
217209
binary_call( Language call_, R_xlen_t index1, R_xlen_t index2 ) : call(call_), proxy1(call_,index1), proxy2(call_,index2){}

inst/include/Rcpp/StringTransformer.h

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
// clone.h: Rcpp R/C++ interface class library -- clone RObject's
33
//
4-
// Copyright (C) 2010 - 2022 Dirk Eddelbuettel and Romain Francois
4+
// Copyright (C) 2010 - 2025 Dirk Eddelbuettel and Romain Francois
55
//
66
// This file is part of Rcpp.
77
//
@@ -26,11 +26,7 @@
2626
namespace Rcpp{
2727

2828
template <typename UnaryOperator>
29-
#if __cplusplus < 201103L
30-
class StringTransformer : public std::unary_function<const char*, const char*> {
31-
#else
3229
class StringTransformer : public std::function<const char*(const char*)> {
33-
#endif
3430
public:
3531
StringTransformer( const UnaryOperator& op_ ): op(op_), buffer(){}
3632
~StringTransformer(){}

inst/include/Rcpp/algorithm.h

+11-38
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
//
33
// algorithm.h: Rcpp R/C++ interface class library -- data frames
44
//
5-
// Copyright (C) 2016 - 2017 Daniel C. Dillon
5+
// Copyright (C) 2016 - 2024 Daniel C. Dillon
6+
// Copyright (C) 2025 Daniel C. Dillon and Iñaki Ucar
67
//
78
// This file is part of Rcpp.
89
//
@@ -22,14 +23,6 @@
2223
#ifndef Rcpp__Algorithm_h
2324
#define Rcpp__Algorithm_h
2425

25-
#if __cplusplus >= 201103L || __INTEL_CXX11_MODE__ == 1
26-
# define RCPP_CONSTEXPR_FUNC constexpr
27-
# define RCPP_CONSTEXPR_VAR constexpr
28-
#else
29-
# define RCPP_CONSTEXPR_FUNC
30-
# define RCPP_CONSTEXPR_VAR const
31-
#endif
32-
3326
namespace Rcpp {
3427
namespace algorithm {
3528

@@ -38,9 +31,7 @@ namespace helpers {
3831
typedef struct {char a[2];} CTYPE_SHORT;
3932
typedef struct {char a[3];} CTYPE_INT;
4033
typedef struct {char a[4];} CTYPE_LONG;
41-
#ifdef RCPP_HAS_LONG_LONG_TYPES
4234
typedef struct {char a[5];} CTYPE_LONG_LONG;
43-
#endif
4435
typedef struct {char a[6];} CTYPE_FLOAT;
4536
typedef struct {char a[7];} CTYPE_DOUBLE;
4637
typedef struct {char a[8];} CTYPE_LONG_DOUBLE;
@@ -49,9 +40,7 @@ namespace helpers {
4940
typedef struct {char a[11];} CTYPE_UNSIGNED_SHORT;
5041
typedef struct {char a[12];} CTYPE_UNSIGNED_INT;
5142
typedef struct {char a[13];} CTYPE_UNSIGNED_LONG;
52-
#ifdef RCPP_HAS_LONG_LONG_TYPES
5343
typedef struct {char a[14];} CTYPE_UNSIGNED_LONG_LONG;
54-
#endif
5544
typedef struct {char a[128];} CTYPE_UNKNOWN;
5645

5746
template< std::size_t I >
@@ -69,10 +58,8 @@ namespace helpers {
6958
template<>
7059
struct ctype_helper< sizeof(CTYPE_LONG) > { typedef long type; static const bool value = true; };
7160

72-
#ifdef RCPP_HAS_LONG_LONG_TYPES
7361
template<>
7462
struct ctype_helper< sizeof(CTYPE_LONG_LONG) > { typedef rcpp_long_long_type type; static const bool value = true; };
75-
#endif
7663

7764
template<>
7865
struct ctype_helper< sizeof(CTYPE_FLOAT) > { typedef float type; static const bool value = true; };
@@ -98,11 +85,8 @@ namespace helpers {
9885
template<>
9986
struct ctype_helper< sizeof(CTYPE_UNSIGNED_LONG) > { typedef unsigned long type; static const bool value = true; };
10087

101-
#ifdef RCPP_HAS_LONG_LONG_TYPES
10288
template<>
10389
struct ctype_helper< sizeof(CTYPE_UNSIGNED_LONG_LONG) > { typedef rcpp_ulong_long_type type; static const bool value = true; };
104-
#endif
105-
10690

10791
template< typename T >
10892
struct ctype
@@ -111,9 +95,7 @@ namespace helpers {
11195
static CTYPE_SHORT test(const short &);
11296
static CTYPE_INT test(const int &);
11397
static CTYPE_LONG test(const long &);
114-
#ifdef RCPP_HAS_LONG_LONG_TYPES
11598
static CTYPE_LONG_LONG test(const rcpp_long_long_type &);
116-
#endif
11799
static CTYPE_FLOAT test(const float &);
118100
static CTYPE_DOUBLE test(const double &);
119101
static CTYPE_LONG_DOUBLE test(const long double &);
@@ -122,9 +104,7 @@ namespace helpers {
122104
static CTYPE_UNSIGNED_SHORT test(const unsigned short &);
123105
static CTYPE_UNSIGNED_INT test(const unsigned int &);
124106
static CTYPE_UNSIGNED_LONG test(const unsigned long &);
125-
#ifdef RCPP_HAS_LONG_LONG_TYPES
126107
static CTYPE_UNSIGNED_LONG_LONG test(const rcpp_ulong_long_type &);
127-
#endif
128108
static CTYPE_UNKNOWN test(...);
129109

130110
static T make();
@@ -139,9 +119,7 @@ namespace helpers {
139119
static CTYPE_SHORT test(const short &);
140120
static CTYPE_INT test(const int &);
141121
static CTYPE_LONG test(const long &);
142-
#ifdef RCPP_HAS_LONG_LONG_TYPES
143122
static CTYPE_LONG_LONG test(const rcpp_long_long_type &);
144-
#endif
145123
static CTYPE_FLOAT test(const float &);
146124
static CTYPE_DOUBLE test(const double &);
147125
static CTYPE_LONG_DOUBLE test(const long double &);
@@ -150,9 +128,7 @@ namespace helpers {
150128
static CTYPE_UNSIGNED_SHORT test(const unsigned short &);
151129
static CTYPE_UNSIGNED_INT test(const unsigned int &);
152130
static CTYPE_UNSIGNED_LONG test(const unsigned long &);
153-
#ifdef RCPP_HAS_LONG_LONG_TYPES
154131
static CTYPE_UNSIGNED_LONG_LONG test(const rcpp_ulong_long_type &);
155-
#endif
156132
static CTYPE_UNKNOWN test(...);
157133

158134
static T make();
@@ -167,29 +143,29 @@ namespace helpers {
167143
template<>
168144
struct rtype_helper< double > {
169145
typedef double type;
170-
static RCPP_CONSTEXPR_VAR int RTYPE = REALSXP;
146+
static constexpr int RTYPE = REALSXP;
171147
static inline double NA() { return NA_REAL; }
172-
static inline RCPP_CONSTEXPR_FUNC double ZERO() { return 0.0; }
173-
static inline RCPP_CONSTEXPR_FUNC double ONE() { return 1.0; }
148+
static inline constexpr double ZERO() { return 0.0; }
149+
static inline constexpr double ONE() { return 1.0; }
174150
};
175151

176152
template<>
177153
struct rtype_helper< int > {
178154
typedef int type;
179-
static RCPP_CONSTEXPR_VAR int RTYPE = INTSXP;
155+
static constexpr int RTYPE = INTSXP;
180156
static inline int NA() { return NA_INTEGER; }
181-
static inline RCPP_CONSTEXPR_FUNC int ZERO() { return 0; }
182-
static inline RCPP_CONSTEXPR_FUNC int ONE() { return 1; }
157+
static inline constexpr int ZERO() { return 0; }
158+
static inline constexpr int ONE() { return 1; }
183159
};
184160

185161
template< typename T >
186162
struct rtype {
187163
typedef typename rtype_helper< typename ctype< T >::type >::type type;
188164
typedef rtype_helper< typename ctype< T >::type > helper_type;
189-
static RCPP_CONSTEXPR_VAR int RTYPE = helper_type::RTYPE;
165+
static constexpr int RTYPE = helper_type::RTYPE;
190166
static inline T NA() { return helper_type::NA(); }
191-
static inline RCPP_CONSTEXPR_FUNC T ZERO() { return helper_type::ZERO(); }
192-
static inline RCPP_CONSTEXPR_FUNC T ONE() { return helper_type::ONE(); }
167+
static inline constexpr T ZERO() { return helper_type::ZERO(); }
168+
static inline constexpr T ONE() { return helper_type::ONE(); }
193169
};
194170

195171
struct log {
@@ -483,7 +459,4 @@ void sqrt(InputIterator begin, InputIterator end, OutputIterator out) {
483459
} // namespace algorithm
484460
} // namespace Rcpp
485461

486-
#undef RCPP_CONSTEXPR_FUNC
487-
#undef RCPP_CONSTEXPR_VAR
488-
489462
#endif

inst/include/Rcpp/exceptions.h

+24-12
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
// exceptions.h: Rcpp R/C++ interface class library -- exceptions
33
//
44
// Copyright (C) 2010 - 2020 Dirk Eddelbuettel and Romain Francois
5-
// Copyright (C) 2021 - 2020 Dirk Eddelbuettel, Romain Francois and Iñaki Ucar
5+
// Copyright (C) 2021 - 2024 Dirk Eddelbuettel, Romain Francois and Iñaki Ucar
6+
// Copyright (C) 2025 Dirk Eddelbuettel, Romain Francois, Iñaki Ucar and James J Balamuta
67
//
78
// This file is part of Rcpp.
89
//
@@ -170,19 +171,30 @@ struct LongjumpException {
170171
}
171172
};
172173

173-
} // namespace Rcpp
174-
174+
#define RCPP_ADVANCED_EXCEPTION_CLASS(__CLASS__, __WHAT__) \
175+
class __CLASS__ : public std::exception { \
176+
public: \
177+
__CLASS__( ) throw() : message( std::string(__WHAT__) + "." ){} \
178+
__CLASS__( const std::string& message ) throw() : \
179+
message( std::string(__WHAT__) + ": " + message + "."){} \
180+
template <typename... Args> \
181+
__CLASS__( const char* fmt, Args&&... args ) throw() : \
182+
message( tfm::format(fmt, std::forward<Args>(args)... ) ){} \
183+
virtual ~__CLASS__() throw(){} \
184+
virtual const char* what() const throw() { return message.c_str(); } \
185+
private: \
186+
std::string message; \
187+
};
175188

176-
// Determine whether to use variadic templated RCPP_ADVANCED_EXCEPTION_CLASS,
177-
// warning, and stop exception functions or to use the generated argument macro
178-
// based on whether the compiler supports c++11 or not.
179-
#if __cplusplus >= 201103L
180-
# include <Rcpp/exceptions/cpp11/exceptions.h>
181-
#else
182-
# include <Rcpp/exceptions/cpp98/exceptions.h>
183-
#endif
189+
template <typename... Args>
190+
inline void warning(const char* fmt, Args&&... args ) {
191+
Rf_warning("%s", tfm::format(fmt, std::forward<Args>(args)... ).c_str());
192+
}
184193

185-
namespace Rcpp {
194+
template <typename... Args>
195+
inline void NORET stop(const char* fmt, Args&&... args) {
196+
throw Rcpp::exception( tfm::format(fmt, std::forward<Args>(args)... ).c_str() );
197+
}
186198

187199
#define RCPP_EXCEPTION_CLASS(__CLASS__,__WHAT__) \
188200
class __CLASS__ : public std::exception{ \

inst/include/Rcpp/exceptions/cpp11/exceptions.h

-56
This file was deleted.

0 commit comments

Comments
 (0)