File tree Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change 1818
1919namespace modm
2020{
21- template <>
22- int32_t
23- Vector<int16_t , 2 >::dot(const modm::Vector<int16_t , 2 >& other) const
24- {
25- int32_t t;
26-
27- t = math::mul (this ->x , other.x );
28- t = math::mac (t,this ->y , other.y );
29-
30- return t;
31- }
32-
33- // ------------------------------------------------------------------------
3421 template <>
3522 template <>
3623 Vector<double , 2 >
Original file line number Diff line number Diff line change @@ -302,11 +302,6 @@ namespace modm
302302 // Declaration of specialized methods
303303 // ------------------------------------------------------------------------
304304
305- template <>
306- int32_t
307- Vector<int16_t , 2 >::dot(const modm::Vector<int16_t , 2 >& other) const ;
308-
309-
310305 template <> template <>
311306 Vector<double , 2 >
312307 Vector<float , 2 >::convert() const ;
You can’t perform that action at this time.
0 commit comments