Many files:

Fix sstream includes

arch/alpha/tlb.cc:
base/cprintf.hh:
base/cprintf_formats.hh:
base/crc.cc:
base/statistics.cc:
base/statistics.hh:
base/stats/text.cc:
cpu/memtest/memtest.cc:
cpu/simple/cpu.cc:
dev/pcidev.cc:
sim/eventq.cc:
    Fix sstream includes

--HG--
extra : convert_revision : fd69937ea26b4961e92f1736fa44daa16f54698d
This commit is contained in:
Steve Reinhardt 2006-05-15 20:06:42 -04:00
parent 7d3eb0fe80
commit 2d9b7846c6
11 changed files with 10 additions and 11 deletions

View file

@ -26,7 +26,6 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include <sstream>
#include <string> #include <string>
#include <vector> #include <vector>

View file

@ -31,13 +31,12 @@
#include <iostream> #include <iostream>
#include <list> #include <list>
#include <sstream>
#include <string> #include <string>
namespace cp {
#include "base/cprintf_formats.hh" #include "base/cprintf_formats.hh"
namespace cp {
class ArgList class ArgList
{ {
private: private:

View file

@ -29,6 +29,11 @@
#ifndef __CPRINTF_FORMATS_HH__ #ifndef __CPRINTF_FORMATS_HH__
#define __CPRINTF_FORMATS_HH__ #define __CPRINTF_FORMATS_HH__
#include <sstream>
#include <ostream>
namespace cp {
struct Format struct Format
{ {
bool alternate_form; bool alternate_form;
@ -343,4 +348,6 @@ inline void
format_string(std::ostream &out, const std::stringstream &data, Format &fmt) format_string(std::ostream &out, const std::stringstream &data, Format &fmt)
{ _format_string(out, data.str(), fmt); } { _format_string(out, data.str(), fmt); }
} // namespace cp
#endif // __CPRINTF_FORMATS_HH__ #endif // __CPRINTF_FORMATS_HH__

View file

@ -31,7 +31,6 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#include <sstream>
#include <string> #include <string>
#include "sim/host.hh" #include "sim/host.hh"

View file

@ -31,7 +31,6 @@
#include <list> #include <list>
#include <map> #include <map>
#include <string> #include <string>
#include <sstream>
#include "base/callback.hh" #include "base/callback.hh"
#include "base/cprintf.hh" #include "base/cprintf.hh"

View file

@ -50,7 +50,6 @@
#include <cmath> #include <cmath>
#include <functional> #include <functional>
#include <iosfwd> #include <iosfwd>
#include <sstream>
#include <string> #include <string>
#include <vector> #include <vector>

View file

@ -31,6 +31,7 @@
#endif #endif
#include <iostream> #include <iostream>
#include <sstream>
#include <fstream> #include <fstream>
#include <string> #include <string>

View file

@ -30,7 +30,6 @@
#include <iomanip> #include <iomanip>
#include <set> #include <set>
#include <sstream>
#include <string> #include <string>
#include <vector> #include <vector>

View file

@ -32,7 +32,6 @@
#include <iostream> #include <iostream>
#include <iomanip> #include <iomanip>
#include <list> #include <list>
#include <sstream>
#include <string> #include <string>
#include "arch/utility.hh" #include "arch/utility.hh"

View file

@ -31,7 +31,6 @@
*/ */
#include <list> #include <list>
#include <sstream>
#include <string> #include <string>
#include <vector> #include <vector>

View file

@ -30,7 +30,6 @@
#include <iostream> #include <iostream>
#include <string> #include <string>
#include <sstream>
#include <vector> #include <vector>
#include "cpu/smt.hh" #include "cpu/smt.hh"