Skip to content

Commit 65b231b

Browse files
clp: Add missing C++ standard library includes in IR parsing files. (#561)
Co-authored-by: kirkrodrigues <[email protected]>
1 parent e21672b commit 65b231b

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#include "parsing.hpp"
22

3+
#include <cstddef>
4+
#include <string>
5+
#include <string_view>
6+
37
#include <string_utils/string_utils.hpp>
48

59
#include "../type_utils.hpp"

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

Lines changed: 2 additions & 1 deletion
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

Lines changed: 1 addition & 0 deletions
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)