Changeset 17054 in vbox for trunk/src/VBox/Main/glue
- Timestamp:
- Feb 24, 2009 11:40:53 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 43277
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/string.cpp
r16495 r17054 81 81 int Utf8Str::toInt(uint64_t &i) const 82 82 { 83 if (!str) 84 return VERR_NO_DIGITS; 83 85 return RTStrToUInt64Ex(str, NULL, 0, &i); 84 86 } … … 86 88 int Utf8Str::toInt(uint32_t &i) const 87 89 { 90 if (!str) 91 return VERR_NO_DIGITS; 88 92 return RTStrToUInt32Ex(str, NULL, 0, &i); 89 93 }
Note:
See TracChangeset
for help on using the changeset viewer.