| 57 | } |
| 58 | |
| 59 | void InitCastTable() { |
| 60 | AddCastFunctions(GetBooleanCasts()); |
| 61 | AddCastFunctions(GetBinaryLikeCasts()); |
| 62 | AddCastFunctions(GetNestedCasts()); |
| 63 | AddCastFunctions(GetNumericCasts()); |
| 64 | AddCastFunctions(GetTemporalCasts()); |
| 65 | AddCastFunctions(GetDictionaryCasts()); |
| 66 | AddCastFunctions(GetExtensionCasts()); |
| 67 | } |
| 68 | |
| 69 | void EnsureInitCastTable() { std::call_once(cast_table_initialized, InitCastTable); } |
| 70 |
nothing calls this directly
no test coverage detected