File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ namespace osmium {
166166
167167 public:
168168
169- GeometryFactory<TGeomImpl, TProjection> () :
169+ GeometryFactory () :
170170 m_projection (),
171171 m_impl (m_projection.epsg()) {
172172 }
@@ -175,7 +175,7 @@ namespace osmium {
175175 * Constructor for default initialized projection.
176176 */
177177 template <typename ... TArgs>
178- explicit GeometryFactory<TGeomImpl, TProjection> (TArgs&&... args) :
178+ explicit GeometryFactory (TArgs&&... args) :
179179 m_projection(),
180180 m_impl(m_projection.epsg(), std::forward<TArgs>(args)...) {
181181 }
@@ -185,7 +185,7 @@ namespace osmium {
185185 * projection is moved into the GeometryFactory.
186186 */
187187 template <typename ... TArgs>
188- explicit GeometryFactory<TGeomImpl, TProjection> (TProjection&& projection, TArgs&&... args) :
188+ explicit GeometryFactory (TProjection&& projection, TArgs&&... args) :
189189 m_projection(std::move(projection)),
190190 m_impl(m_projection.epsg(), std::forward<TArgs>(args)...) {
191191 }
You can’t perform that action at this time.
0 commit comments