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 44c4320 commit 6e4f8adCopy full SHA for 6e4f8ad
ChangeLog
@@ -1,3 +1,8 @@
1
+2014-03-08 Kevin Ushey <[email protected]>
2
+
3
+ * inst/include/Rcpp/proxy/proxy.h: Make sure proxys know about the
4
+ const char* wrap shortcut
5
6
2014-03-08 Dirk Eddelbuettel <[email protected]>
7
8
* inst/include/Rcpp/proxy/Binding.h: Remove spurious ';' [g++ -pedantic]
inst/include/Rcpp/proxy/proxy.h
@@ -20,8 +20,9 @@
20
// forward decl of as (should put this somewhere better)
21
// similar for wrap
22
namespace Rcpp {
23
- template <typename T> T as(SEXP);
24
- template <typename T> SEXP wrap(const T& object);
+ template <typename T> T as(SEXP);
+ template <typename T> SEXP wrap(const T& object);
25
+ inline SEXP wrap(const char* const v);
26
}
27
28
#include <Rcpp/proxy/GenericProxy.h>
0 commit comments