Use the proper version of C++ headers
This commit is contained in:
parent
ea83cedcf6
commit
befae3c0b0
4 changed files with 7 additions and 4 deletions
|
@ -31,8 +31,9 @@
|
|||
#ifndef __BASE_CPRINTF_FORMATS_HH__
|
||||
#define __BASE_CPRINTF_FORMATS_HH__
|
||||
|
||||
#include <sstream>
|
||||
#include <cstring>
|
||||
#include <ostream>
|
||||
#include <sstream>
|
||||
|
||||
namespace cp {
|
||||
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
* Authors: Nathan Binkert
|
||||
*/
|
||||
|
||||
#include <cstdlib>
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
|
|
|
@ -28,9 +28,9 @@
|
|||
* Authors: Nathan Binkert
|
||||
*/
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/time.h>
|
||||
#include <time.h>
|
||||
#include <cctype>
|
||||
#include <cstring>
|
||||
#include <ctime>
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
|
||||
#include <algorithm>
|
||||
#include <cassert>
|
||||
#include <climits>
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
|
Loading…
Reference in a new issue