aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rtlil.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-07-22 20:58:44 +0200
committerClifford Wolf <clifford@clifford.at>2014-07-22 20:58:44 +0200
commit28b3fd05fa9cf6d469fdec95e247a7ffe5bc001d (patch)
tree9a847fc2fc608ce9ffbc947bcb18eea2205bb2d5 /kernel/rtlil.h
parent7bffde6abdaf6fc2ed090946442f90b2438e6126 (diff)
downloadyosys-28b3fd05fa9cf6d469fdec95e247a7ffe5bc001d.tar.gz
yosys-28b3fd05fa9cf6d469fdec95e247a7ffe5bc001d.tar.bz2
yosys-28b3fd05fa9cf6d469fdec95e247a7ffe5bc001d.zip
SigSpec refactoring: change RTLIL::SigSpec::chunks() to be read-only, created interim RTLIL::SigSpec::chunks_rw()
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r--kernel/rtlil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index 6bbf69602..9d5b3b304 100644
--- a/kernel/rtlil.h
+++ b/kernel/rtlil.h
@@ -501,7 +501,7 @@ private:
int width_;
public:
- std::vector<RTLIL::SigChunk> &chunks() { return chunks_; }
+ std::vector<RTLIL::SigChunk> &chunks_rw() { return chunks_; }
const std::vector<RTLIL::SigChunk> &chunks() const { return chunks_; }
int size() const { return width_; }