Remove some incorrect const properties

A recent patch incorrectly change these two methods to const.
This commit is contained in:
Cary R 2010-08-12 12:46:24 -07:00 committed by Stephen Williams
parent 03f6283203
commit 6023ab0893
2 changed files with 4 additions and 4 deletions

View File

@ -23,12 +23,12 @@
# include "netlist.h"
# include <cassert>
bool NetAssign::is_asynchronous() const
bool NetAssign::is_asynchronous()
{
return true;
}
bool NetCondit::is_asynchronous() const
bool NetCondit::is_asynchronous()
{
return false;
}

View File

@ -2317,7 +2317,7 @@ class NetAssign : public NetAssignBase {
explicit NetAssign(NetAssign_*lv, NetExpr*rv);
~NetAssign();
bool is_asynchronous() const;
bool is_asynchronous();
virtual bool emit_proc(struct target_t*) const;
virtual int match_proc(struct proc_match_t*);
@ -2496,7 +2496,7 @@ class NetCondit : public NetProc {
virtual NexusSet* nex_input(bool rem_out = true);
virtual void nex_output(NexusSet&o);
bool is_asynchronous() const;
bool is_asynchronous();
bool synth_async(Design*des, NetScope*scope,
const NetBus&nex_map, NetBus&nex_out);