reintroduce template keyword

msvc seems to be ok with it
This commit is contained in:
Jane Tournois 2015-07-01 13:04:36 +02:00
parent 631a60ea85
commit 2c6b6a9ee9
1 changed files with 1 additions and 1 deletions

View File

@ -2152,7 +2152,7 @@ private: //--------------------------------------------------- property handling
template<class I, class T>
std::pair<Property_map<I, T>, bool>
add_property_map(const std::string& name, const T t=T()) {
return Property_selector<I>(this)().add<T>(name, t);
return Property_selector<I>(this)().template add<T>(name, t);
}