We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c64530 commit a2e45faCopy full SHA for a2e45fa
ChangeLog
@@ -1,3 +1,8 @@
1
+2016-07-18 Kevin Ushey <kevin@rstudio.com>
2
+
3
+ * inst/include/r/headers.h: Ensure NORET macro set appropriately
4
5
6
2016-07-18 Dirk Eddelbuettel <edd@debian.org>
7
8
* DESCRIPTION: Release 0.12.6
inst/include/Rcpp/r/headers.h
@@ -56,6 +56,12 @@
56
#include <R_ext/Rdynload.h>
57
#include <Rversion.h>
58
59
+#if defined(__GNUC__) && __GNUC__ >= 3
60
+#define NORET __attribute__((noreturn))
61
+#else
62
+#define NORET
63
+#endif
64
65
#undef major
66
#undef minor
67
#undef makedev
0 commit comments