bool string::isEmpty() bool string::empty() // if AS_USE_STLNAMES == 1
| 153 | // bool string::isEmpty() |
| 154 | // bool string::empty() // if AS_USE_STLNAMES == 1 |
| 155 | static bool StringIsEmpty(const string &str) |
| 156 | { |
| 157 | // We don't register the method directly because some compilers |
| 158 | // and standard libraries inline the definition, resulting in the |
| 159 | // linker being unable to find the declaration |
| 160 | // Example: CLang/LLVM with XCode 4.3 on OSX 10.7 |
| 161 | return str.empty(); |
| 162 | } |
| 163 | |
| 164 | static string &AssignUInt64ToString(asQWORD i, string &dest) |
| 165 | { |
no outgoing calls
no test coverage detected