Merge pull request #3192 from PX4/uavcan-fix-3190

Removed an excessive template disambiguator
This commit is contained in:
Lorenz Meier 2015-11-18 10:09:04 +01:00
commit e045ab131e

View File

@ -494,9 +494,8 @@ public:
const unsigned quota_per_queue = virtual_iface_block_allocation_quota; // 2x overcommit
for (unsigned i = 0; i < num_ifaces_; i++) {
ifaces_[i].template
construct<uavcan::IPoolAllocator&, uavcan::ISystemClock&, pthread_mutex_t&, unsigned>
(allocator, clock_, driver_mutex_, quota_per_queue);
ifaces_[i].construct<uavcan::IPoolAllocator&, uavcan::ISystemClock&, pthread_mutex_t&,
unsigned>(allocator, clock_, driver_mutex_, quota_per_queue);
}
}