Skip to content

Commit

Permalink
x Fix some warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
JeromeMartinez committed Jul 3, 2017
1 parent 4b41b47 commit fe87114
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/ZenLib/int128s.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ int128::int128 (const char * sz) throw ()
++i;
};
};
const unsigned int len = strlen(sz);
const size_t len = strlen(sz);
for (; i < len; ++i) {
unsigned int n = 0;
if (sz [i] >= '0' && sz [i] <= (('0' + (int) radix) < '9'?('0' + (int) radix):'9')) //if (sz [i] >= '0' && sz [i] <= (('0' + (int) radix) <? '9'))
Expand Down
2 changes: 1 addition & 1 deletion Source/ZenLib/int128u.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ uint128::uint128 (const char * sz) throw ()
++i;
};
};
const unsigned int len = strlen(sz);
const size_t len = strlen(sz);
for (; i < len; ++i) {
unsigned int n = 0;
if (sz [i] >= '0' && sz [i] <= (('0' + (int) radix) < '9'?('0' + (int) radix):'9')) //if (sz [i] >= '0' && sz [i] <= (('0' + (int) radix) <? '9'))
Expand Down

0 comments on commit fe87114

Please sign in to comment.