diff options
| author | Johannes Schickel | 2010-10-13 20:04:50 +0000 |
|---|---|---|
| committer | Johannes Schickel | 2010-10-13 20:04:50 +0000 |
| commit | bc2781fdb39b5c7db7154c8dd90538974907508d (patch) | |
| tree | bdfd45bb16c7797ae0dd91aa05511c8d8c04b38c /engines/sword25/math | |
| parent | bbbfdad4581ce1aab757f1af6e663f9851543baa (diff) | |
| download | scummvm-rg350-bc2781fdb39b5c7db7154c8dd90538974907508d.tar.gz scummvm-rg350-bc2781fdb39b5c7db7154c8dd90538974907508d.tar.bz2 scummvm-rg350-bc2781fdb39b5c7db7154c8dd90538974907508d.zip | |
SWORD25: Semi-colon cleanup.
svn-id: r53446
Diffstat (limited to 'engines/sword25/math')
| -rw-r--r-- | engines/sword25/math/vertex.h | 2 | ||||
| -rw-r--r-- | engines/sword25/math/walkregion.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/sword25/math/vertex.h b/engines/sword25/math/vertex.h index 24cd11a4e8..18ea4c082c 100644 --- a/engines/sword25/math/vertex.h +++ b/engines/sword25/math/vertex.h @@ -79,7 +79,7 @@ namespace Sword25 { */ class Vertex { public: - Vertex() : x(0), y(0) {}; + Vertex() : x(0), y(0) {} Vertex(int x_, int y_) { this->x = x_; this->y = y_; diff --git a/engines/sword25/math/walkregion.cpp b/engines/sword25/math/walkregion.cpp index 7cdd8c64c5..d47ed3d11f 100644 --- a/engines/sword25/math/walkregion.cpp +++ b/engines/sword25/math/walkregion.cpp @@ -95,7 +95,7 @@ struct DijkstraNode { typedef Container::iterator Iter; typedef Container::const_iterator ConstIter; - DijkstraNode() : cost(Infinity), chosen(false) {}; + DijkstraNode() : cost(Infinity), chosen(false) {} ConstIter parentIter; int cost; bool chosen; |
