| 912 | |
| 913 | template <typename T> |
| 914 | static T SafeLog(T x) { |
| 915 | if (x > 0) { |
| 916 | return std::log(x); |
| 917 | } else { |
| 918 | return -INFINITY; |
| 919 | } |
| 920 | } |
| 921 | |
| 922 | inline bool CheckASCII(const std::string& s) { |
| 923 | for (auto c : s) { |
no outgoing calls
no test coverage detected