More -Weffc++ cleanup
[supertux.git] / src / supertux / spawn_point.cpp
index 701b058..5f36934 100644 (file)
 #include "supertux/spawn_point.hpp"
 #include "util/log.hpp"
 
-SpawnPoint::SpawnPoint()
+SpawnPoint::SpawnPoint() :
+  name(),
+  pos()
 {}
 
-SpawnPoint::SpawnPoint(const SpawnPoint& other)
-  : name(other.name), pos(other.pos)
+SpawnPoint::SpawnPoint(const SpawnPoint& other) :
+  name(other.name), 
+  pos(other.pos)
 {}
 
 SpawnPoint::SpawnPoint(const lisp::Lisp* slisp)