Skip to content

Commit

Permalink
Remove unnecessary semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
doctaweeks authored and Carbenium committed Apr 15, 2015
1 parent 62ff887 commit 27923b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/shared/Database/Transaction.h
Expand Up @@ -61,8 +61,8 @@ class TransactionTask : public SQLOperation
friend class DatabaseWorker;

public:
TransactionTask(SQLTransaction trans) : m_trans(trans) { } ;
~TransactionTask(){ };
TransactionTask(SQLTransaction trans) : m_trans(trans) { }
~TransactionTask() { }

protected:
bool Execute() override;
Expand Down

0 comments on commit 27923b8

Please sign in to comment.