diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-11-26 18:11:34 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-11-26 18:11:34 +0100 |
commit | 6459e3ac3965ea56c8e6fb1b4309a1258df778a7 (patch) | |
tree | afbf00cb48e21aa7d3917c0d0afca217b7fa74c9 /kernel | |
parent | 0793f1b196df536975a044a4ce53025c81d00c7f (diff) | |
download | yosys-6459e3ac3965ea56c8e6fb1b4309a1258df778a7.tar.gz yosys-6459e3ac3965ea56c8e6fb1b4309a1258df778a7.tar.bz2 yosys-6459e3ac3965ea56c8e6fb1b4309a1258df778a7.zip |
Removed dangling ';' in rtlil.h
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/rtlil.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h index 99dcb3116..7b669536e 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -460,7 +460,7 @@ struct RTLIL::Const Const(std::string str); Const(int val, int width = 32); Const(RTLIL::State bit, int width = 1); - Const(const std::vector<RTLIL::State> &bits) : bits(bits) { flags = CONST_FLAG_NONE; }; + Const(const std::vector<RTLIL::State> &bits) : bits(bits) { flags = CONST_FLAG_NONE; } Const(const std::vector<bool> &bits); bool operator <(const RTLIL::Const &other) const; @@ -476,7 +476,7 @@ struct RTLIL::Const inline int size() const { return bits.size(); } inline RTLIL::State &operator[](int index) { return bits.at(index); } - inline const RTLIL::State &operator[](int index) const { return bits.at(index); }; + inline const RTLIL::State &operator[](int index) const { return bits.at(index); } inline RTLIL::Const extract(int offset, int len = 1, RTLIL::State padding = RTLIL::State::S0) const { RTLIL::Const ret; |