315,340d314
< #if 0
< inline void
< format_integer(std::ostream &out, short data, Format &fmt)
< { _format_integer(out, data, fmt); }
< inline void
< format_integer(std::ostream &out, unsigned short data, Format &fmt)
< { _format_integer(out, data, fmt); }
< inline void
< format_integer(std::ostream &out, int data, Format &fmt)
< { _format_integer(out, data, fmt); }
< inline void
< format_integer(std::ostream &out, unsigned int data, Format &fmt)
< { _format_integer(out, data, fmt); }
< inline void
< format_integer(std::ostream &out, long data, Format &fmt)
< { _format_integer(out, data, fmt); }
< inline void
< format_integer(std::ostream &out, unsigned long data, Format &fmt)
< { _format_integer(out, data, fmt); }
< inline void
< format_integer(std::ostream &out, long long data, Format &fmt)
< { _format_integer(out, data, fmt); }
< inline void
< format_integer(std::ostream &out, unsigned long long data, Format &fmt)
< { _format_integer(out, data, fmt); }
< #endif