Skip to content

Commit ce9eb67

Browse files
committed
Fix C++ standard library include
1 parent e21672b commit ce9eb67

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

components/core/src/clp/ir/parsing.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#include "parsing.hpp"
22

3+
#include <string>
4+
#include <string_view>
5+
36
#include <string_utils/string_utils.hpp>
47

58
#include "../type_utils.hpp"

components/core/src/clp/ir/parsing.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
* the placement of the methods in this file.
1010
*/
1111

12+
#include <cstddef>
13+
#include <string>
1214
#include <string_view>
13-
#include <vector>
1415

1516
namespace clp::ir {
1617
/**

components/core/src/clp/ir/parsing.inc

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#ifndef CLP_IR_PARSING_INC
22
#define CLP_IR_PARSING_INC
33

4+
#include <cstddef>
45
#include <string>
56
#include <string_view>
67

0 commit comments

Comments
 (0)