Skip to content

Commit

Permalink
code mistake error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
timurhai committed Jul 2, 2021
1 parent ab63216 commit 516539e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion afanasy/src/libafanasy/taskexec.h
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class TaskExec : public Af
inline void setTaskCommand(const std::string & i_str ) {m_command_task = i_str;}
inline void setTaskFiles( const std::vector<std::string> & i_vec) {m_files_task = i_vec;}

inline void joinEnvironment(const std::map<std::string, std::string> & i_env);
inline void joinEnvironment(const std::map<std::string, std::string> & i_env)
{for (auto const& it : i_env) m_environment[it.first] = it.second;}

inline void setHostNames( const std::list<std::string> & names) { m_multihost_names = names;}
Expand Down

0 comments on commit 516539e

Please sign in to comment.