| 901 | /***********************************************************************/ |
| 902 | template <class TYPE> |
| 903 | char *TYPVAL<TYPE>::GetCharString(char *p) |
| 904 | { |
| 905 | snprintf(p, 32, Fmt, Tval); |
| 906 | return p; |
| 907 | } // end of GetCharString |
| 908 | |
| 909 | template <> |
| 910 | char *TYPVAL<double>::GetCharString(char *p) |
no test coverage detected