vhdlpp: Renamed a range_t constructor parameter to be more descriptive.

This commit is contained in:
Maciej Suminski 2015-03-27 11:41:55 +01:00
parent 11a86794d9
commit 2f2539e557
1 changed files with 2 additions and 2 deletions

View File

@ -199,8 +199,8 @@ class VTypeArray : public VType {
public:
class range_t {
public:
range_t(Expression*m = NULL, Expression*l = NULL, bool dir = true) :
msb_(m), lsb_(l), direction_(dir) { }
range_t(Expression*m = NULL, Expression*l = NULL, bool down_to = true) :
msb_(m), lsb_(l), direction_(down_to) { }
range_t*clone() const;