Skip to content

Commit bc2490c

Browse files
committed
Fix template call
1 parent 16b48be commit bc2490c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cppproperties/properties.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ namespace tct::properties
174174
throw std::logic_error("setter must not be null.");
175175

176176
auto p = new property_link_functions<T>(setter, getter);
177-
m_properties.template emplace(name, p);
177+
m_properties.emplace(name, p);
178178
}
179179

180180
/**

0 commit comments

Comments
 (0)