Deleted Added
sdiff udiff text old ( 12365:4444393b3551 ) new ( 12480:8ea05a9ce49e )
full compact
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 298 unchanged lines hidden (view full) ---

307format_integer(std::ostream &out, char data, Format &fmt)
308{ _format_integer(out, (int)data, fmt); }
309inline void
310format_integer(std::ostream &out, unsigned char data, Format &fmt)
311{ _format_integer(out, (int)data, fmt); }
312inline void
313format_integer(std::ostream &out, signed char data, Format &fmt)
314{ _format_integer(out, (int)data, fmt); }
315
316//
317// floating point formats
318//
319template <typename T>
320inline void
321format_float(std::ostream &out, const T &data, Format &fmt)
322{ out << "<bad arg type for float format>"; }

--- 24 unchanged lines hidden ---