unsigned char -> uint32_t in CharacterRange
This commit is contained in:
parent
9338249075
commit
8f4939a3d3
1 changed files with 2 additions and 2 deletions
|
|
@ -8,8 +8,8 @@ namespace rules {
|
|||
using std::ostream;
|
||||
using std::string;
|
||||
|
||||
CharacterRange::CharacterRange(unsigned char value) : min(value), max(value) {}
|
||||
CharacterRange::CharacterRange(unsigned char min, unsigned char max)
|
||||
CharacterRange::CharacterRange(uint32_t value) : min(value), max(value) {}
|
||||
CharacterRange::CharacterRange(uint32_t min, uint32_t max)
|
||||
: min(min), max(max) {}
|
||||
|
||||
bool CharacterRange::operator==(const CharacterRange &other) const {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue