ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/Represent/Hexadecimal.cpp
(Generate patch)

Comparing Represent/Hexadecimal.cpp (file contents):
Revision 397 by douglas, 2004-12-23T21:01:12-08:00 vs.
Revision 398 by douglas, 2004-12-27T14:43:01-08:00

# Line 24 | Line 24 | Hexadecimal::Hexadecimal(const ext::Stri
24                  bytes.InsertLast(0);
25  
26                  bytes.Last() |= hex(string[0]);
27 <                bytes.Last() |= signed_ && bytes.Last() < 8 ? 0xF0 : 0;
27 >                bytes.Last() |= signed_ && bytes.Last() > 7 ? 0xF0 : 0;
28          }
29   }
30  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines