Skip to content

Commit 25bc94d

Browse files
committed
Fixup stubs after changes to string and string.h
1 parent 446ebfe commit 25bc94d

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

cpp/common/test/includes/standard-library/array

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef _GHLIBCPP_ARRAY
22
#define _GHLIBCPP_ARRAY
3-
#include "iterator.h"
4-
#include "string.h"
3+
#include <iterator>
4+
#include <string>
55

66
// Note: a few features currently unused by tests are commented out
77
namespace std {

cpp/common/test/includes/standard-library/deque.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef _GHLIBCPP_DEQUE
22
#define _GHLIBCPP_DEQUE
3-
#include "iterator.h"
4-
#include "string.h"
3+
#include <iterator>
4+
#include <string>
55

66
namespace std {
77
template <class T, class Allocator = std::allocator<T>> class deque {

cpp/common/test/includes/standard-library/ostream.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef _GHLIBCPP_OSTREAM
22
#define _GHLIBCPP_OSTREAM
3-
#include "string.h"
43
#include <ios>
4+
#include <string>
55

66
namespace std {
77
template <class charT, class traits>

cpp/common/test/includes/standard-library/random.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define _GHLIBCPP_RANDOM
33
#include "cstdint.h"
44
#include "stddef.h"
5-
#include "string.h"
5+
#include <string>
66

77
namespace std {
88
template <class UIntType, UIntType a, UIntType c, UIntType m>

cpp/common/test/includes/standard-library/stdexcept.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef _GHLIBCPP_STDEXCEPT
22
#define _GHLIBCPP_STDEXCEPT
3-
#include "exception.h"
4-
#include "string.h"
3+
#include <exception>
4+
#include <string>
55

66
namespace std {
77
class logic_error : public exception {

cpp/common/test/includes/standard-library/vector.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef _GHLIBCPP_VECTOR
22
#define _GHLIBCPP_VECTOR
3-
#include "iterator.h"
4-
#include "string.h"
3+
#include <iterator>
4+
#include <string>
55

66
namespace std {
77

0 commit comments

Comments
 (0)