Skip to content

Commit f36bebf

Browse files
committed
Remove some compile warnings.
1 parent 3fd622e commit f36bebf

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

netclass.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012 Stephen Williams ([email protected])
2+
* Copyright (c) 2012-2014 Stephen Williams ([email protected])
33
*
44
* This source code is free software; you can redistribute it
55
* 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_
5050
return true;
5151
}
5252

53-
void netclass_t::set_class_scope(NetScope*class_scope)
53+
void netclass_t::set_class_scope(NetScope*class_scope__)
5454
{
5555
assert(class_scope_ == 0);
56-
class_scope_ = class_scope;
56+
class_scope_ = class_scope__;
5757
}
5858

5959
void netclass_t::set_definition_scope(NetScope*use_definition_scope)

vvp/vthread.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5581,7 +5581,7 @@ bool of_STORE_PROP_V(vthread_t thr, vvp_code_t cp)
55815581
/*
55825582
* %store/qb/r <var-label>
55835583
*/
5584-
bool of_STORE_QB_R(vthread_t thr, vvp_code_t cp)
5584+
bool of_STORE_QB_R(vthread_t, vvp_code_t)
55855585
{
55865586
fprintf(stderr, "XXXX %%store/qb/r NOT IMPLEMENTED\n");
55875587
return true;
@@ -5617,7 +5617,7 @@ bool of_STORE_QB_STR(vthread_t thr, vvp_code_t cp)
56175617
/*
56185618
* %store/qf/r <var-label>
56195619
*/
5620-
bool of_STORE_QF_R(vthread_t thr, vvp_code_t cp)
5620+
bool of_STORE_QF_R(vthread_t, vvp_code_t)
56215621
{
56225622
fprintf(stderr, "XXXX %%store/qf/r NOT IMPLEMENTED\n");
56235623
return true;
@@ -5626,7 +5626,7 @@ bool of_STORE_QF_R(vthread_t thr, vvp_code_t cp)
56265626
/*
56275627
* %store/qf/str <var-label>
56285628
*/
5629-
bool of_STORE_QF_STR(vthread_t thr, vvp_code_t cp)
5629+
bool of_STORE_QF_STR(vthread_t, vvp_code_t)
56305630
{
56315631
fprintf(stderr, "XXXX %%store/qf/str NOT IMPLEMENTED\n");
56325632
return true;

0 commit comments

Comments
 (0)