Skip to content

Commit

Permalink
Merge pull request #176 from clEsperanto/debug-patch-1
Browse files Browse the repository at this point in the history
post release debug
  • Loading branch information
StRigaud authored Aug 30, 2023
2 parents 76578b6 + 318d779 commit 78852f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion clic/include/utils.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#ifndef __INCLUDE_UTILS_HPP
#define __INCLUDE_UTILS_HPP

#include <cstdint>
#include <fstream>
#include <iostream>
#include <limits>
Expand Down Expand Up @@ -222,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 78852f0

Please sign in to comment.