| 998 | } |
| 999 | |
| 1000 | void IndirectDouble(double f) { |
| 1001 | PushIndirect(f, FBT_INDIRECT_FLOAT, WidthF(f)); |
| 1002 | } |
| 1003 | void IndirectDouble(const char *key, double d) { |
| 1004 | Key(key); |
| 1005 | IndirectDouble(d); |
nothing calls this directly
no test coverage detected