| 49 | HXCPP_EXTERN_CLASS_ATTRIBUTES void __hxcpp_println_string(const String &inV); |
| 50 | |
| 51 | template<typename T> inline void __hxcpp_println(T inV) |
| 52 | { |
| 53 | Dynamic d(inV); |
| 54 | __hxcpp_println_string(d); |
| 55 | } |
| 56 | // Specialization that does not need dynamic boxing |
| 57 | template<> inline void __hxcpp_println(String inV) |
| 58 | { |
nothing calls this directly
no test coverage detected