Skip to content

Commit

Permalink
Fix envsubst includes
Browse files Browse the repository at this point in the history
  • Loading branch information
doganulus committed Apr 14, 2024
1 parent 0283601 commit fe1dac3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 1 addition & 5 deletions include/rvstd/envsubst.hpp
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
#ifndef RVSTD_ENVSUBST_HPP
#define RVSTD_ENVSUBST_HPP

#include <boost/regex.hpp>

#include <iostream>
#include <regex>
#include <string>

namespace rvstd {

auto envsubst(const std::string& text) -> std::string;
auto envsubst(std::string const& text) -> std::string;

} // namespace rvstd

Expand Down
1 change: 1 addition & 0 deletions src/rvstd/envsubst.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include <boost/regex.hpp>

#include <sstream>
#include <string>

namespace rvstd {
Expand Down

0 comments on commit fe1dac3

Please sign in to comment.