| 13 | } |
| 14 | |
| 15 | __forceinline uint32_t stringLengthSafe ( Context & ctx, const char * str ) {//accepts nullptr |
| 16 | return str ? stringLength(ctx,str) : 0; |
| 17 | } |
| 18 | |
| 19 | template <typename TT> |
| 20 | __forceinline uint64_t hash_function ( Context &, const TT x ) { |
no test coverage detected