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.
2 parents 86bc3bc + cdfca12 commit dc7900bCopy full SHA for dc7900b
ChangeLog
@@ -1,3 +1,7 @@
1
+2018-02-07 Kevin Ushey <kevinushey@gmail.com>
2
+
3
+ * inst/include/Rcpp/longlong.h: Allow long long on 64bit Windows
4
5
2018-01-21 Dirk Eddelbuettel <edd@debian.org>
6
7
* README.md: Added new section 'Support'
inst/include/Rcpp/longlong.h
@@ -38,4 +38,11 @@ __extension__ typedef unsigned long long int rcpp_ulong_long_type;
38
#endif
39
40
41
+// The Rtools toolchain provides long long on 64bit Windows
42
+#ifdef _WIN64
43
+typedef long long rcpp_long_long_type;
44
+typedef unsigned long long rcpp_ulong_long_type;
45
+#define RCPP_HAS_LONG_LONG_TYPES
46
+#endif
47
48
0 commit comments