diff options
Diffstat (limited to 'development/c++/meta4.cc')
-rw-r--r-- | development/c++/meta4.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/development/c++/meta4.cc b/development/c++/meta4.cc index 9c3be77..7437cb4 100644 --- a/development/c++/meta4.cc +++ b/development/c++/meta4.cc @@ -22,7 +22,9 @@ struct registry { return r.second; } - R invoke(const std::string& nm, P... p) const { return invoke_impl<R>(nm, p...); } + R invoke(const std::string& nm, P... p) const { + return invoke_impl<R>(nm, p...); + } void dump() const { for (const auto& it : m_fns) { |