Change duplicate msb_ to be lsb_

This commit is contained in:
Cary R 2012-08-08 12:21:24 -07:00
parent 0f1523e15d
commit bc85385f13
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class netrange_t {
{ msb_ = that.msb_; lsb_ = that.lsb_; return *this; }
inline bool defined() const
{ return msb_!=LONG_MAX || msb_!= LONG_MAX; }
{ return msb_!=LONG_MAX || lsb_!= LONG_MAX; }
inline unsigned long width()const
{ if (!defined()) return 0;