summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Beare <Richard.Beare@gmail.com>2016-04-19 14:41:26 +1000
committerRichard Beare <Richard.Beare@gmail.com>2016-04-19 14:41:26 +1000
commit3f75b2917d7d7a6f9f7bf4851cb2424b0540ea17 (patch)
treec9a86cee2f00c9917e5d46d18a773c6f7d9e7c35
parent1403610518b32038d743c6398c0d6f45dca8b433 (diff)
downloadswig-3f75b2917d7d7a6f9f7bf4851cb2424b0540ea17.tar.gz
R delete an old trace statement
-rw-r--r--Lib/r/std_vector.i3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/r/std_vector.i b/Lib/r/std_vector.i
index 02ebd067f..f896d9932 100644
--- a/Lib/r/std_vector.i
+++ b/Lib/r/std_vector.i
@@ -544,8 +544,7 @@
struct traits_asptr < std::vector<T> > {
static int asptr(SEXP obj, std::vector<T> **val) {
std::vector<T> *p;
- Rprintf("my asptr\n");
- int res = SWIG_R_ConvertPtr(obj, (void**)&p, type_info< std::vector<T> >(), 0);
+ int res = SWIG_R_ConvertPtr(obj, (void**)&p, type_info< std::vector<T> >(), 0);
if (SWIG_IsOK(res)) {
if (val) *val = p;
}