summaryrefslogtreecommitdiff
path: root/src/position.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/position.h')
-rw-r--r--src/position.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/position.h b/src/position.h
index af36dd81..4622b8ed 100644
--- a/src/position.h
+++ b/src/position.h
@@ -38,8 +38,8 @@ struct Position
int y;
};
-typedef std::list<Position> Path;
-typedef Path::iterator PathIterator;
+using Path = std::list<Position>;
+using PathIterator = Path::iterator;
/**
* Appends a string representation of a position to the output stream.