| 1220 | /***********************************************************************/ |
| 1221 | template <class TYPE> |
| 1222 | bool TYPVAL<TYPE>::SetConstFormat(PGLOBAL g, FORMAT& fmt) |
| 1223 | { |
| 1224 | char c[32]; |
| 1225 | |
| 1226 | fmt.Type[0] = *GetFormatType(Type); |
| 1227 | fmt.Length = snprintf(c, sizeof(c), Fmt, Tval); |
| 1228 | fmt.Prec = Prec; |
| 1229 | return false; |
| 1230 | } // end of SetConstFormat |
| 1231 | |
| 1232 | /* -------------------------- Class STRING --------------------------- */ |
| 1233 |
no test coverage detected