From 0dcb46e4c40a7c5beebfae0676793a8540a9aa3b Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Sat, 19 Mar 2016 14:42:34 +0000 Subject: [PATCH] Fix shadow warning. --- vvp/ufunc.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/vvp/ufunc.cc b/vvp/ufunc.cc index a8f64eead..972efa614 100644 --- a/vvp/ufunc.cc +++ b/vvp/ufunc.cc @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002-2010 Stephen Williams (steve@icarus.com) + * Copyright (c) 2002-2016 Stephen Williams (steve@icarus.com) * * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU @@ -186,9 +186,9 @@ void ufunc_core::invoke_thread_() ufunc_vec4::ufunc_vec4(unsigned ow, vvp_net_t*ptr, unsigned nports, vvp_net_t**ports, vvp_code_t start_address, - __vpiScope*call_scope, + __vpiScope*call_scope_in, char*scope_label) -: ufunc_core(ow, ptr, nports, ports, start_address, call_scope, scope_label) +: ufunc_core(ow, ptr, nports, ports, start_address, call_scope_in, scope_label) { } @@ -204,9 +204,9 @@ void ufunc_vec4::finish_thread() ufunc_real::ufunc_real(unsigned ow, vvp_net_t*ptr, unsigned nports, vvp_net_t**ports, vvp_code_t start_address, - __vpiScope*call_scope, + __vpiScope*call_scope_in, char*scope_label) -: ufunc_core(ow, ptr, nports, ports, start_address, call_scope, scope_label) +: ufunc_core(ow, ptr, nports, ports, start_address, call_scope_in, scope_label) { }