File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change
1
+ 2014-02-17 Romain Francois <
[email protected] >
2
+
3
+ * inst/include/Rcpp/traits/un_pointer.h: fix bug in un_pointer for object<T>
4
+
1
5
2014-02-16 JJ Allaire <
[email protected] >
2
6
3
7
* src/attributes.cpp Replace (incorrect) call to
Original file line number Diff line number Diff line change 21
21
\item Fix issue preventing packages with Rcpp :: interfaces attribute
22
22
from compiling.
23
23
}
24
+ \item Changes in Rcpp modules
25
+ \itemize {
26
+ \item \code {un_pointer } implementation for \code {object } was wrong.
27
+ }
24
28
}
25
29
}
26
30
Original file line number Diff line number Diff line change 3
3
//
4
4
// un_pointer.h: Rcpp R/C++ interface class library --
5
5
//
6
- // Copyright (C) 2012-2013 Dirk Eddelbuettel and Romain Francois
6
+ // Copyright (C) 2012-2014 Dirk Eddelbuettel and Romain Francois
7
7
//
8
8
// This file is part of Rcpp.
9
9
//
@@ -28,7 +28,7 @@ namespace traits{
28
28
29
29
template <typename T> struct un_pointer { typedef T type ;} ;
30
30
template <typename T> struct un_pointer <T*> { typedef T type ;} ;
31
- template <typename T> struct un_pointer < object<T> > { typedef T* type ;} ;
31
+ template <typename T> struct un_pointer < object<T> > { typedef T type ;} ;
32
32
33
33
} // namespace traits
34
34
} // namespace Rcpp
You can’t perform that action at this time.
0 commit comments