Changeset 33694 in vbox for trunk/include/iprt/cpp
- Timestamp:
- Nov 2, 2010 2:58:27 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cpp/ministring.h
r33675 r33694 654 654 * @returns 0 on failure. 655 655 */ 656 int toInt32() const656 int32_t toInt32() const 657 657 { 658 658 return RTStrToInt32(m_psz); … … 665 665 * @returns 0 on failure. 666 666 */ 667 int toUInt32() const667 uint32_t toUInt32() const 668 668 { 669 669 return RTStrToUInt32(m_psz);
Note:
See TracChangeset
for help on using the changeset viewer.