Skip to content

Commit e020109

Browse files
clean up headers
1 parent 524361f commit e020109

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

cppparser/test/app/compare.h

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@
44
#ifndef E6050C6F_BFEC_4B71_9B13_0EFF19B45EB4
55
#define E6050C6F_BFEC_4B71_9B13_0EFF19B45EB4
66

7+
#include <fstream>
78
#include <iostream>
89
#include <sstream>
9-
#include <fstream>
1010

11-
#include <filesystem>
1211
#include <boost/program_options.hpp>
13-
#include <boost/system/config.hpp>
12+
#include <filesystem>
1413

15-
namespace fs = std::filesystem;
14+
namespace fs = std::filesystem;
1615
namespace bpo = boost::program_options;
1716

1817
template <typename _Itr1, typename _Itr2, typename _Pr>
@@ -88,8 +87,8 @@ inline FileCompareResult compareFiles(const fs::path& path1, const fs::path& pat
8887
}
8988

9089
inline void reportFileComparisonError(FileCompareResult result,
91-
const fs::path& path1,
92-
const fs::path& path2,
90+
const fs::path& path1,
91+
const fs::path& path2,
9392
std::pair<int, int>& diffStartsAt)
9493
{
9594
if (result == kFailedToOpen1stFile)

cppparser/test/app/cppparsertest.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#include <utility>
1313

1414
#include <boost/program_options.hpp>
15-
#include <boost/system/config.hpp>
1615

1716
#include <filesystem>
1817

cppparser/test/app/options.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66

77
#include <iostream>
88

9-
#include <filesystem>
109
#include <boost/program_options.hpp>
11-
#include <boost/system/config.hpp>
10+
#include <filesystem>
1211

1312
namespace fs = std::filesystem;
1413
namespace bpo = boost::program_options;

0 commit comments

Comments
 (0)