Skip to content

Commit c9bf088

Browse files
committed
fix: identation
1 parent c37bd12 commit c9bf088

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

module_08/ex02/src/main.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ template <typename T> void printStack(MutantStack<T> &mstack) {
1414

1515
void myTest() {
1616
NL;
17-
std::cout << BLACK("========== My test with MutantStack ==========") << std::endl;
17+
std::cout << BLACK("========== My test with MutantStack ==========")
18+
<< std::endl;
1819
MutantStack<int> mstack;
1920

2021
// Test pushing elements
@@ -84,7 +85,7 @@ template <typename T> void printStackList(std::list<T> &mylist) {
8485

8586
void myTestList(void) {
8687
std::cout << std::endl;
87-
std::cout << BLACK("========== My test with List ==========") << std::endl;
88+
std::cout << BLACK("========== My test with List ==========") << std::endl;
8889
std::list<int> mylist; // Use std::list instead of MutantStack
8990

9091
// Test pushing elements
@@ -154,7 +155,7 @@ void listTest(void) {
154155

155156
int main() {
156157
myTest();
157-
myTestList();
158+
myTestList();
158159
subjectTest();
159160
listTest();
160161

0 commit comments

Comments
 (0)