Skip to content

Commit 408a651

Browse files
committed
Small fix
- Fix includes - Fix comment - Fix Typo
1 parent 0ec1315 commit 408a651

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

SimpleCom/TerminalRedirector.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
#include "stdafx.h"
2222
#include "TerminalRedirectorBase.h"
2323
#include "util.h"
24+
#include "LogWriter.h"
25+
#include "WinAPIException.h"
26+
2427

2528
namespace SimpleCom
2629
{

SimpleCom/TerminalRedirectorBase.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
#include "stdafx.h"
2121
#include "TerminalRedirectorBase.h"
22+
#include "WinAPIException.h"
2223

2324

2425
void SimpleCom::TerminalRedirectorBase::StartRedirector()

SimpleCom/TerminalRedirectorBase.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
#pragma once
2020

2121
#include "stdafx.h"
22-
#include "LogWriter.h"
23-
#include "WinAPIException.h"
2422

2523

2624
namespace SimpleCom
@@ -41,9 +39,9 @@ namespace SimpleCom
4139

4240
virtual void StartRedirector();
4341

44-
// Returns true if the peripheral is reattachable.
4542
virtual void AwaitTermination();
4643

44+
// Returns true if the peripheral is reattachable.
4745
virtual bool Reattachable();
4846
};
4947
}

SimpleComTest/UtilTest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2023, Yasumasa Suenaga
2+
* Copyright (C) 2023, 2025, Yasumasa Suenaga
33
*
44
* This program is free software; you can redistribute it and/or
55
* modify it under the terms of the GNU General Public License
@@ -25,7 +25,7 @@ using namespace Microsoft::VisualStudio::CppUnitTestFramework;
2525

2626
namespace SimpleComTest
2727
{
28-
TEST_CLASS(UtilmTest)
28+
TEST_CLASS(UtilTest)
2929
{
3030
public:
3131

0 commit comments

Comments
 (0)