reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1016 assert(!Str.empty() && Str[0] >= '0' && Str[0] <= '9' && "Not a number"); 1016 assert(!Str.empty() && Str[0] >= '0' && Str[0] <= '9' && "Not a number"); 1016 assert(!Str.empty() && Str[0] >= '0' && Str[0] <= '9' && "Not a number"); 1021 Result = Result*10 + (Str[0] - '0'); 1024 Str = Str.substr(1); 1024 Str = Str.substr(1); 1025 } while (!Str.empty() && Str[0] >= '0' && Str[0] <= '9'); 1025 } while (!Str.empty() && Str[0] >= '0' && Str[0] <= '9'); 1025 } while (!Str.empty() && Str[0] >= '0' && Str[0] <= '9');