Skip to content

Commit

Permalink
Fix segfault in ProcessTestSuite
Browse files Browse the repository at this point in the history
  • Loading branch information
Gei0r committed Feb 20, 2017
1 parent e007770 commit c7bd743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ProcessTestSuite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class CallOnScopeExit
CallOnScopeExit(const std::function<void()> &f) : m_f(f) {}
~CallOnScopeExit() {m_f();}
private:
const std::function<void()> &m_f;
const std::function<void()> m_f;
};

void ProcessTestSuite::returnCode()
Expand Down

0 comments on commit c7bd743

Please sign in to comment.