Skip to content

Commit

Permalink
Removed unnecessary semicolons to avoid compiler warnings. (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
pluehne authored and rkaminsk committed Jun 6, 2017
1 parent 247a161 commit cc83b3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libclingo/clingo/control.hh
Expand Up @@ -117,8 +117,8 @@ struct SolveEventHandler {
virtual ~SolveEventHandler() = default;
};
using USolveEventHandler = std::unique_ptr<SolveEventHandler>;
inline bool SolveEventHandler::on_model(Model &) { return true; };
inline void SolveEventHandler::on_finish(SolveResult) { };
inline bool SolveEventHandler::on_model(Model &) { return true; }
inline void SolveEventHandler::on_finish(SolveResult) { }

struct SolveFuture {
virtual SolveResult get() = 0;
Expand Down

0 comments on commit cc83b3b

Please sign in to comment.