Skip to content

Commit

Permalink
remove unnecessary "typename"
Browse files Browse the repository at this point in the history
  • Loading branch information
karlnapf committed Feb 20, 2018
1 parent 39f04c7 commit aa8cde6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shogun/base/SGObject.h
Expand Up @@ -403,7 +403,7 @@ class CSGObject
* @param name name of the parameter
* @param value value of the parameter, wrapped in smart pointer
*/
template <typename T, typename std::enable_if_t<std::is_base_of<CSGObject, T>::value, T>* = nullptr>
template <typename T, std::enable_if_t<std::is_base_of<CSGObject, T>::value, T>* = nullptr>
void put(const std::string& name, Some<T> value)
{
put(name, (CSGObject*)(value.get()));
Expand Down

0 comments on commit aa8cde6

Please sign in to comment.