Skip to content

Commit c30eb3e

Browse files
committed
cleaned up includes based on include-what-you-use
1 parent bd15495 commit c30eb3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

simplecpp.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#include <set>
1717
#include <string>
1818
#include <unordered_map>
19+
#include <utility>
1920
#include <vector>
2021
#if __cplusplus >= 202002L
2122
# include <version>
@@ -41,7 +42,7 @@
4142
#endif
4243

4344
#ifndef _WIN32
44-
# include <sys/stat.h>
45+
# include <sys/types.h>
4546
#endif
4647

4748
#if defined(_MSC_VER)
@@ -69,7 +70,6 @@ namespace simplecpp {
6970

7071
using TokenString = std::string;
7172
class Macro;
72-
class FileDataCache;
7373

7474
/**
7575
* Location in source code

0 commit comments

Comments
 (0)