bool string::isEmpty() bool string::empty() // if AS_USE_STLNAMES == 1
| 179 | // bool string::isEmpty() |
| 180 | // bool string::empty() // if AS_USE_STLNAMES == 1 |
| 181 | static bool StringIsEmpty(const string &str) |
| 182 | { |
| 183 | // We don't register the method directly because some compilers |
| 184 | // and standard libraries inline the definition, resulting in the |
| 185 | // linker being unable to find the declaration |
| 186 | // Example: CLang/LLVM with XCode 4.3 on OSX 10.7 |
| 187 | return str.empty(); |
| 188 | } |
| 189 | |
| 190 | #if AS_NO_IMPL_OPS_WITH_STRING_AND_PRIMITIVE == 0 |
| 191 | static string &AssignUInt64ToString(asQWORD i, string &dest) |
no outgoing calls
no test coverage detected