Skip to content

Commit c00b7aa

Browse files
added missing implementations in DottedPairProxy
1 parent 03ed49b commit c00b7aa

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

inst/include/Rcpp/api/meat/DottedPairProxy.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ namespace Rcpp{
2222

2323
template <typename CLASS>
2424
template <typename T>
25-
DottedPairProxyPolicy<CLASS>::DottedPairProxy& DottedPairProxyPolicy<CLASS>::DottedPairProxy::operator=( const T& rhs){
25+
typename DottedPairProxyPolicy<CLASS>::DottedPairProxy& DottedPairProxyPolicy<CLASS>::DottedPairProxy::operator=( const T& rhs){
2626
return set( wrap(rhs) ) ;
2727
}
2828

2929
template <typename CLASS>
3030
template <typename T>
31-
DottedPairProxyPolicy<CLASS>::DottedPairProxy& DottedPairProxyPolicy<CLASS>::DottedPairProxy::operator=( const traits::named_object<T>& rhs){
31+
typename DottedPairProxyPolicy<CLASS>::DottedPairProxy& DottedPairProxyPolicy<CLASS>::DottedPairProxy::operator=( const traits::named_object<T>& rhs){
3232
return set( wrap(rhs.object), rhs.name ) ;
3333
}
3434

inst/include/Rcpp/api/meat/meat.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
#include <Rcpp/api/meat/Environment.h>
3939

4040
#include <Rcpp/api/meat/DottedPairImpl.h>
41-
#include <Rcpp/api/meat/DottedPair.h>
4241
#include <Rcpp/api/meat/Vector.h>
4342
#include <Rcpp/api/meat/Matrix.h>
4443
#include <Rcpp/api/meat/is.h>

0 commit comments

Comments
 (0)