@@ -247,57 +247,57 @@ namespace Rcpp{
247
247
Rf_warning ( tfm::format (fmt, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10).c_str () );
248
248
}
249
249
250
- inline void stop (const std::string& message) {
250
+ inline void NORET stop (const std::string& message) {
251
251
throw Rcpp::exception (message.c_str ());
252
252
}
253
253
254
254
template <typename T1>
255
- inline void stop (const char * fmt, const T1& arg1) {
255
+ inline void NORET stop (const char * fmt, const T1& arg1) {
256
256
throw Rcpp::exception ( tfm::format (fmt, arg1 ).c_str () );
257
257
}
258
258
259
259
template <typename T1, typename T2>
260
- inline void stop (const char * fmt, const T1& arg1, const T2& arg2) {
260
+ inline void NORET stop (const char * fmt, const T1& arg1, const T2& arg2) {
261
261
throw Rcpp::exception ( tfm::format (fmt, arg1, arg2 ).c_str () );
262
262
}
263
263
264
264
template <typename T1, typename T2, typename T3>
265
- inline void stop (const char * fmt, const T1& arg1, const T2& arg2, const T3& arg3) {
265
+ inline void NORET stop (const char * fmt, const T1& arg1, const T2& arg2, const T3& arg3) {
266
266
throw Rcpp::exception ( tfm::format (fmt, arg1, arg2, arg3).c_str () );
267
267
}
268
268
269
269
template <typename T1, typename T2, typename T3, typename T4>
270
- inline void stop (const char * fmt, const T1& arg1, const T2& arg2, const T3& arg3, const T4& arg4) {
270
+ inline void NORET stop (const char * fmt, const T1& arg1, const T2& arg2, const T3& arg3, const T4& arg4) {
271
271
throw Rcpp::exception ( tfm::format (fmt, arg1, arg2, arg3, arg4).c_str () );
272
272
}
273
273
274
274
template <typename T1, typename T2, typename T3, typename T4, typename T5>
275
- inline void stop (const char * fmt, const T1& arg1, const T2& arg2, const T3& arg3, const T4& arg4, const T5& arg5) {
275
+ inline void NORET stop (const char * fmt, const T1& arg1, const T2& arg2, const T3& arg3, const T4& arg4, const T5& arg5) {
276
276
throw Rcpp::exception ( tfm::format (fmt, arg1, arg2, arg3, arg4, arg5).c_str () );
277
277
}
278
278
279
279
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
280
- inline void stop (const char * fmt, const T1& arg1, const T2& arg2, const T3& arg3, const T4& arg4, const T5& arg5, const T6& arg6) {
280
+ inline void NORET stop (const char * fmt, const T1& arg1, const T2& arg2, const T3& arg3, const T4& arg4, const T5& arg5, const T6& arg6) {
281
281
throw Rcpp::exception ( tfm::format (fmt, arg1, arg2, arg3, arg4, arg5, arg6).c_str () );
282
282
}
283
283
284
284
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
285
- inline void stop (const char * fmt, const T1& arg1, const T2& arg2, const T3& arg3, const T4& arg4, const T5& arg5, const T6& arg6, const T7& arg7) {
285
+ inline void NORET stop (const char * fmt, const T1& arg1, const T2& arg2, const T3& arg3, const T4& arg4, const T5& arg5, const T6& arg6, const T7& arg7) {
286
286
throw Rcpp::exception ( tfm::format (fmt, arg1, arg2, arg3, arg4, arg5, arg6, arg7).c_str () );
287
287
}
288
288
289
289
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8>
290
- inline void stop (const char * fmt, const T1& arg1, const T2& arg2, const T3& arg3, const T4& arg4, const T5& arg5, const T6& arg6, const T7& arg7, const T8& arg8) {
290
+ inline void NORET stop (const char * fmt, const T1& arg1, const T2& arg2, const T3& arg3, const T4& arg4, const T5& arg5, const T6& arg6, const T7& arg7, const T8& arg8) {
291
291
throw Rcpp::exception ( tfm::format (fmt, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8).c_str () );
292
292
}
293
293
294
294
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9>
295
- inline void stop (const char * fmt, const T1& arg1, const T2& arg2, const T3& arg3, const T4& arg4, const T5& arg5, const T6& arg6, const T7& arg7, const T8& arg8, const T9& arg9) {
295
+ inline void NORET stop (const char * fmt, const T1& arg1, const T2& arg2, const T3& arg3, const T4& arg4, const T5& arg5, const T6& arg6, const T7& arg7, const T8& arg8, const T9& arg9) {
296
296
throw Rcpp::exception ( tfm::format (fmt, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9).c_str () );
297
297
}
298
298
299
299
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10>
300
- inline void stop (const char * fmt, const T1& arg1, const T2& arg2, const T3& arg3, const T4& arg4, const T5& arg5, const T6& arg6, const T7& arg7, const T8& arg8, const T9& arg9, const T10& arg10) {
300
+ inline void NORET stop (const char * fmt, const T1& arg1, const T2& arg2, const T3& arg3, const T4& arg4, const T5& arg5, const T6& arg6, const T7& arg7, const T8& arg8, const T9& arg9, const T10& arg10) {
301
301
throw Rcpp::exception ( tfm::format (fmt, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10).c_str () );
302
302
}
303
303
}
0 commit comments