Advertisement
zachdyer

C++ to_string patch for Code::Blocks

Jun 30th, 2014
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. #include "to_string.h"
  2.  
  3. string to_string(int number){
  4.     string result;
  5.     ostringstream convert ;
  6.     convert << number ;
  7.     result = convert.str() ;
  8.     return result;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement