Deleted Added
sdiff udiff text old ( 4039:b910b61a52b9 ) new ( 5546:4ffc3cafba9b )
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;

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

26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Nathan Binkert
29 */
30
31#ifndef __BASE_CPRINTF_FORMATS_HH__
32#define __BASE_CPRINTF_FORMATS_HH__
33
34#include <sstream>
35#include <ostream>
36
37namespace cp {
38
39struct Format
40{
41 bool alternate_form;
42 bool flush_left;
43 bool print_sign;

--- 312 unchanged lines hidden ---