Removed an excessive template disambiguator in the virtual CAN driver class (fixes 3190)

This commit is contained in:
Pavel Kirienko 2015-11-17 02:00:42 +03:00
parent ee2ce77c82
commit 82b3ea2501

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);
}
}