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 b58eb29 commit 299aebaCopy full SHA for 299aeba
inst/include/Rcpp/traits/has_copy_constructor.h
@@ -27,7 +27,7 @@ namespace traits{
27
template <typename T> struct has_copy_constructor :
28
integral_constant<bool, std::is_copy_constructible<T>::value >{} ;
29
#else
30
- template<typename T> struct has_copy_constructor : true_type ;
+ template<typename T> struct has_copy_constructor : true_type {} ;
31
#endif
32
33
} // traits
inst/unitTests/cpp/Module.cpp
@@ -122,7 +122,7 @@ RCPP_EXPOSED_CLASS(ModuleTest)
122
123
namespace Rcpp {
124
namespace traits {
125
- template <> struct has_copy_constructor<ModuleTest> : false_type ;
+ template <> struct has_copy_constructor<ModuleTest> : false_type {} ;
126
}
127
128
0 commit comments