diff --git a/doomsday/engine/portable/include/edit_map.h b/doomsday/engine/portable/include/edit_map.h index 9efdcc7473..17fc4d220c 100644 --- a/doomsday/engine/portable/include/edit_map.h +++ b/doomsday/engine/portable/include/edit_map.h @@ -98,7 +98,6 @@ boolean MPE_GameObjProperty(const char *objName, uint idx, void MPE_PruneRedundantMapData(editmap_t* map, int flags); GameMap* MPE_GetLastBuiltMap(void); -Vertex* createVertex(void); #ifdef __cplusplus } // extern "C" diff --git a/doomsday/engine/portable/include/map/bsp/linedefinfo.h b/doomsday/engine/portable/include/map/bsp/linedefinfo.h index d527590620..128a0c81d7 100644 --- a/doomsday/engine/portable/include/map/bsp/linedefinfo.h +++ b/doomsday/engine/portable/include/map/bsp/linedefinfo.h @@ -59,7 +59,7 @@ struct LineDefInfo /// @todo Refactor me away. int validCount; - LineDefInfo::LineDefInfo() : flags(0), overlap(0), validCount(0) + LineDefInfo() : flags(0), overlap(0), validCount(0) {} }; diff --git a/doomsday/engine/portable/include/map/bsp/partitioncost.h b/doomsday/engine/portable/include/map/bsp/partitioncost.h index d847112cba..65ebaa2406 100644 --- a/doomsday/engine/portable/include/map/bsp/partitioncost.h +++ b/doomsday/engine/portable/include/map/bsp/partitioncost.h @@ -42,7 +42,7 @@ struct PartitionCost int miniRight; int miniLeft; - PartitionCost::PartitionCost() : + PartitionCost() : total(0), splits(0), iffy(0), nearMiss(0), realRight(0), realLeft(0), miniRight(0), miniLeft(0) {} diff --git a/doomsday/engine/portable/include/map/bsp/vertexinfo.h b/doomsday/engine/portable/include/map/bsp/vertexinfo.h index 2adf49b352..42a857fe28 100644 --- a/doomsday/engine/portable/include/map/bsp/vertexinfo.h +++ b/doomsday/engine/portable/include/map/bsp/vertexinfo.h @@ -40,8 +40,7 @@ namespace bsp { struct VertexInfo { struct HEdgeTip* tipSet; - VertexInfo::VertexInfo() : tipSet(0) - {} + VertexInfo() : tipSet(0) {} }; } // namespace bsp