Skip to content

Commit

Permalink
Fix a stray multi_
Browse files Browse the repository at this point in the history
  • Loading branch information
jll63 committed Jun 27, 2015
1 parent 4dd0e80 commit 2e15957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/yorel/methods/no_macros.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ typename method<Method, R(P...)>::method_pointer_type method<Method, R(P...)>::n
template<template<typename Sig> class Method, typename R, typename... P>
typename method<Method, R(P...)>::implementation& method<Method, R(P...)>::the() {
if (!impl) {
impl = new implementation(YOMM11_TRACE(_yomm11_name_((multi_method<Method, R(P...)>*) nullptr)));
impl = new implementation(YOMM11_TRACE(_yomm11_name_((method<Method, R(P...)>*) nullptr)));
}

return *impl;
Expand Down

0 comments on commit 2e15957

Please sign in to comment.