Skip to content

Commit 2d519e6

Browse files
committed
ミスをうめこみ
1 parent 1e70126 commit 2d519e6

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

app.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,12 @@
44
* @author takahashitom
55
*/
66

7-
// #include "app.h"
7+
#include "app.h"
88
#include <iostream>
99
#include "EtRobocon2025.h"
1010

1111
// メインタスク
12-
void main_task(intptr_t unused)
13-
14-
{
12+
void main_task(intptr_t unused){
1513
std::cout << "Hello ETROBO!" << std::endl;
1614
EtRobocon2025::start();
1715
ext_tsk();

modules/EtRobocon2025.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88

99
void EtRobocon2025::start()
1010
{
11-
std::cout << "Hello KATLA" << std::endl;
11+
std::cout << "Hello KATLAB" << std::endl;
1212
}

tests/EtRobocon2025Test.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010

1111
using namespace std;
1212

13-
namespace etrobocon2025_test {
13+
namespace etrobocon2025_test
14+
{
1415
// start関数が最終的に標準出力に"Hello KATLAB"を出力することを確認するテスト
1516
TEST(EtRobocon2025Test, Start)
1617
{

tests/helpers/OStreamCapture.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
#include "OStreamCapture.h"
88

99
OStreamCapture::OStreamCapture(ostream& _targetStream)
10-
: targetStream(_targetStream), originalBuf(_targetStream.rdbuf())
11-
{
10+
: targetStream(_targetStream), originalBuf(_targetStream.rdbuf()){
1211
targetStream.rdbuf(buffer.rdbuf());
1312
}
1413

0 commit comments

Comments
 (0)