Skip to content

Commit

Permalink
Merge pull request #86 from mogemimi/fix-extra-semi
Browse files Browse the repository at this point in the history
Fix -Wextra-semi warnings on Clang
  • Loading branch information
srz-zumix committed Aug 22, 2018
2 parents b84e549 + 0229300 commit 18af145
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/internal/iutest_genparams.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ class iuValueArray
explicit make_array(const _MyTuple& t)
{
tuples::tuple_foreach(t, *this);
};
}
};
public:
explicit iuValueArray(const Args&... args)
Expand Down
2 changes: 1 addition & 1 deletion include/internal/iutest_params_util.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class IParamTestCaseInfo
void AddTestPattern(IParamTestInfoData* testinfo)
{
m_testinfos.push_back(testinfo);
};
}

public:
void RegisterTests() const
Expand Down
2 changes: 1 addition & 1 deletion include/internal/iutest_socket.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class BasicSocket
{
Close(m_socket);
m_socket = INVALID_DESCRIPTOR;
};
}
void CheckLastError()
{
#ifdef IUTEST_OS_WINDOWS
Expand Down
2 changes: 1 addition & 1 deletion include/iutest_listener.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class TestEventRepeater : public TestEventListener
void Append(TestEventListener* listener)
{
m_listeners.push_back(listener);
};
}

/**
* @brief リスナーの解放
Expand Down

0 comments on commit 18af145

Please sign in to comment.