Forgot a dot.

This commit is contained in:
ThePhD 2013-12-21 19:42:50 -05:00
parent ef223ecaeb
commit 7ca6ce8d55

View File

@ -50,7 +50,7 @@ public:
template<typename... Args>
proxy& set_function( Args&&... args ) {
tbl.set_function( key, std::forward<Args>( args ).. );
tbl.set_function( key, std::forward<Args>( args )... );
return *this;
}