Skip to content

Commit

Permalink
clp: Add missing C++ standard library includes in IR parsing files. (y…
Browse files Browse the repository at this point in the history
…-scope#561)

Co-authored-by: kirkrodrigues <2454684+kirkrodrigues@users.noreply.github.com>
  • Loading branch information
2 people authored and Jack Luo committed Dec 4, 2024
1 parent 3e8335b commit cdea01f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions components/core/src/clp/ir/parsing.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#include "parsing.hpp"

#include <cstddef>
#include <string>
#include <string_view>

#include <string_utils/string_utils.hpp>

#include "../type_utils.hpp"
Expand Down
3 changes: 2 additions & 1 deletion components/core/src/clp/ir/parsing.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
* the placement of the methods in this file.
*/

#include <cstddef>
#include <string>
#include <string_view>
#include <vector>

namespace clp::ir {
/**
Expand Down
1 change: 1 addition & 0 deletions components/core/src/clp/ir/parsing.inc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#ifndef CLP_IR_PARSING_INC
#define CLP_IR_PARSING_INC

#include <cstddef>
#include <string>
#include <string_view>

Expand Down

0 comments on commit cdea01f

Please sign in to comment.