Skip to content

Commit

Permalink
rm const argument signature
Browse files Browse the repository at this point in the history
Signed-off-by: Stephane Rigaud <Stephane.rigaud@pasteur.fr>
  • Loading branch information
StRigaud authored Aug 30, 2023
1 parent ff0ecc5 commit 318d779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clic/include/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ loadFile(const std::string & file_path) -> std::string
}

inline auto
saveFile(const std::string & file_path, const std::string & source) -> void
saveFile(std::string & file_path, std::string & source) -> void
{
std::ofstream ofs(file_path);
if (!ofs.is_open())
Expand Down

0 comments on commit 318d779

Please sign in to comment.