| 688 | } |
| 689 | |
| 690 | bool MathLib::isPositive(const std::string &str) |
| 691 | { |
| 692 | if (str.empty()) |
| 693 | return false; |
| 694 | return !MathLib::isNegative(str); |
| 695 | } |
| 696 | |
| 697 | static bool isValidIntegerSuffixIt(std::string::const_iterator it, std::string::const_iterator end, bool supportMicrosoftExtensions=true) |
| 698 | { |
nothing calls this directly
no test coverage detected