home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / stl453up.zip / stl453fx / zOSv1r2_DIFFS / stlport-stl-_num_put.c < prev    next >
Text File  |  2002-04-29  |  1KB  |  25 lines

  1. 295,296c295
  2. <   //TORLAB DEBUG original __max_int_t __temp = __x;
  3. <   __max_int_t __tempint = __x; // TORLAB DEBUG, rename __temp to __tempint
  4. ---
  5. >   __max_int_t __temp = __x;
  6. 300,301c299
  7. <   // TORLAB DEBUG original if (__negative) __temp = -__temp;
  8. <   if (__negative) __tempint = -__tempint; //TORLAB DEBUG rename __temp to __tempint
  9. ---
  10. >   if (__negative) __temp = -__temp;
  11. 303,306c301,302
  12. <   //TORLAB DEBUG original for (; __temp != 0; __temp /= 10)
  13. <   //TORLAB DEBUG original *--__ptr = (int)(__temp % 10) + '0';      
  14. <   for (; __tempint != 0; __tempint /= 10) //TORLAB DEBUG rename __temp to __tempint
  15. <     *--__ptr = (int)(__tempint % 10) + '0'; //TORLAB DEBUG rename __temp to __tempint
  16. ---
  17. >   for (; __temp != 0; __temp /= 10)
  18. >     *--__ptr = (int)(__temp % 10) + '0';      
  19. 439,441c435
  20. <   //TORLAB original basic_string<_CharT> __str = __val ? __np.truename() : __np.falsename();
  21. <   basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> > __str = __val ? __np.truename() : __np.falsename(); //TORLAB DEBUG add arguments
  22. ---
  23. >   basic_string<_CharT> __str = __val ? __np.truename() : __np.falsename();
  24.