Skip to content

Commit 3498216

Browse files
author
Torben
committed
includes angepasst
1 parent ea9f978 commit 3498216

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/String.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
#include <iostream>
2-
using namespace std;
3-
41
#include "String.h"
52

63
String::String() {
@@ -78,6 +75,5 @@ ostream& operator<<(ostream &out, String &s) {
7875
for (int i = 0; i < s.size; i++) {
7976
out << s.str[i];
8077
}
81-
8278
return out;
8379
}

src/testString.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#include "String.h"
2+
#include <iostream>
3+
using namespace std;
24

35
int main() {
46

0 commit comments

Comments
 (0)