refactor: EOL: DOS to Unix

This commit is contained in:
Calcitem 2019-09-14 10:03:35 +08:00
parent 2eb0872597
commit 6d4d9e9c4d
2 changed files with 10 additions and 10 deletions

View File

@ -57,8 +57,8 @@ Board &Board::operator= (const Board &other)
} }
if (!other.millList.empty()) { if (!other.millList.empty()) {
for (auto i : other.millList) { for (auto i : other.millList) {
millList.push_back(i); millList.push_back(i);
} }
} }

View File

@ -20,11 +20,11 @@
*****************************************************************************/ *****************************************************************************/
#include "player.h" #include "player.h"
Player::Player() Player::Player()
{ {
} }
Player::~Player() Player::~Player()
{ {
} }