don't shadow

master
Daniel Kolesa 2016-02-29 00:56:53 +00:00
parent 78568e4161
commit b8e752b6ba
1 changed files with 3 additions and 3 deletions

View File

@ -431,9 +431,9 @@ struct CsState {
bool run_bool(ostd::ConstCharRange code);
bool run_bool(Ident *id, TvalRange args);
void run_ret(const ostd::Uint32 *code, TaggedValue &result);
void run_ret(ostd::ConstCharRange code, TaggedValue &result);
void run_ret(Ident *id, TvalRange args, TaggedValue &result);
void run_ret(const ostd::Uint32 *code, TaggedValue &ret);
void run_ret(ostd::ConstCharRange code, TaggedValue &ret);
void run_ret(Ident *id, TvalRange args, TaggedValue &ret);
void run_ret(const ostd::Uint32 *code) {
run_ret(code, *result);