From f36bebf0e1b434c549b0e6c2cdd77ca542f08964 Mon Sep 17 00:00:00 2001 From: Cary R Date: Mon, 13 Oct 2014 16:30:42 -0700 Subject: [PATCH] Remove some compile warnings. --- netclass.cc | 6 +++--- vvp/vthread.cc | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/netclass.cc b/netclass.cc index 05fcd18e2..0ae3ba1dc 100644 --- a/netclass.cc +++ b/netclass.cc @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012 Stephen Williams (steve@icarus.com) + * Copyright (c) 2012-2014 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 @@ -50,10 +50,10 @@ bool netclass_t::set_property(perm_string pname, property_qualifier_t qual, ivl_ return true; } -void netclass_t::set_class_scope(NetScope*class_scope) +void netclass_t::set_class_scope(NetScope*class_scope__) { assert(class_scope_ == 0); - class_scope_ = class_scope; + class_scope_ = class_scope__; } void netclass_t::set_definition_scope(NetScope*use_definition_scope) diff --git a/vvp/vthread.cc b/vvp/vthread.cc index b90e4d7ee..908c5b297 100644 --- a/vvp/vthread.cc +++ b/vvp/vthread.cc @@ -5581,7 +5581,7 @@ bool of_STORE_PROP_V(vthread_t thr, vvp_code_t cp) /* * %store/qb/r */ -bool of_STORE_QB_R(vthread_t thr, vvp_code_t cp) +bool of_STORE_QB_R(vthread_t, vvp_code_t) { fprintf(stderr, "XXXX %%store/qb/r NOT IMPLEMENTED\n"); return true; @@ -5617,7 +5617,7 @@ bool of_STORE_QB_STR(vthread_t thr, vvp_code_t cp) /* * %store/qf/r */ -bool of_STORE_QF_R(vthread_t thr, vvp_code_t cp) +bool of_STORE_QF_R(vthread_t, vvp_code_t) { fprintf(stderr, "XXXX %%store/qf/r NOT IMPLEMENTED\n"); return true; @@ -5626,7 +5626,7 @@ bool of_STORE_QF_R(vthread_t thr, vvp_code_t cp) /* * %store/qf/str */ -bool of_STORE_QF_STR(vthread_t thr, vvp_code_t cp) +bool of_STORE_QF_STR(vthread_t, vvp_code_t) { fprintf(stderr, "XXXX %%store/qf/str NOT IMPLEMENTED\n"); return true;