Skip to content

Commit 0f7cbe2

Browse files
committed
Remove unused header
1 parent b1fa37e commit 0f7cbe2

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/UtilityLib/StringHelper.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
#include "StringHelper.h"
21
#include <regex>
32

3+
#include "StringHelper.h"
4+
45
std::string StringHelper::ReplaceAll(const std::string &str, const std::string &search, const std::string &replace)
56
{
67
return std::regex_replace(str, std::regex(search), replace);

src/UtilityLib/Utility.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#pragma once
22

3+
#include <optional>
34
#include <string>
45
#include <vector>
56
#include <Windows.h>
6-
#include <optional>
77

88
class CUtility
99
{

tests/UnitTest/JsonHandlerTest.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#include <gtest/gtest.h>
22

3-
#include <vector>
43
#include <string>
5-
#include <memory>
64

75
#include "JsonHandler.h"
86

0 commit comments

Comments
 (0)