Skip to content

Commit

Permalink
Fix formatting with clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Poeplau committed Jul 7, 2020
1 parent e9fbeb9 commit c5cd234
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ void TestCaseGenerator::onSegFault(S2EExecutionState *state, uint64_t pid, uint6
generateTestCases(state, ss.str(), TC_FILE);
}

void TestCaseGenerator::onStateFork(S2EExecutionState *state, const std::vector<S2EExecutionState*>& newStates, const std::vector<klee::ref<klee::Expr>>& newConditions) {
void TestCaseGenerator::onStateFork(S2EExecutionState *state, const std::vector<S2EExecutionState *> &newStates,
const std::vector<klee::ref<klee::Expr>> &newConditions) {
for (auto *state : newStates) {
generateTestCases(state, "fork", TC_FILE);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,8 @@ class TestCaseGenerator : public Plugin, public IPluginInvoker {

ExecutionTracer *m_tracer;

void onStateFork(S2EExecutionState *state, const std::vector<S2EExecutionState*>& newStates, const std::vector<klee::ref<klee::Expr>>& newConditions);
void onStateFork(S2EExecutionState *state, const std::vector<S2EExecutionState *> &newStates,
const std::vector<klee::ref<klee::Expr>> &newConditions);
void onStateKill(S2EExecutionState *state);
void onSegFault(S2EExecutionState *state, uint64_t pid, uint64_t pc);
void onWindowsUserCrash(S2EExecutionState *state, const WindowsUserModeCrash &desc);
Expand Down

0 comments on commit c5cd234

Please sign in to comment.