summaryrefslogtreecommitdiff
path: root/move.h
diff options
context:
space:
mode:
Diffstat (limited to 'move.h')
-rw-r--r--move.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/move.h b/move.h
index 7a66945..1734197 100644
--- a/move.h
+++ b/move.h
@@ -23,8 +23,6 @@
#include "alphabetparameters.h"
-using namespace std;
-
namespace Quackle
{
@@ -136,7 +134,7 @@ private:
// comparison based on action, then tiles, then horizontalness, then startrow, then endcol
bool operator<(const Quackle::Move &move1, const Quackle::Move &move2);
-class MoveList : public vector<Move>
+class MoveList : public std::vector<Move>
{
public:
enum SortType { Equity, Score, Alphabetical, Win};