18
18
19
19
// ----------------------------------------------------------------------------
20
20
template <typename T>
21
- modm::Vector<T, 2 >::Vector() :
22
- x (),
23
- y()
24
- {
25
- }
26
-
27
- // ----------------------------------------------------------------------------
28
- template <typename T>
29
- modm::Vector<T, 2 >::Vector(const T& inX, const T& inY) :
21
+ constexpr modm::Vector<T, 2 >::Vector(const T& inX, const T& inY) :
30
22
x (inX),
31
23
y(inY)
32
24
{
33
25
}
34
26
35
27
// ----------------------------------------------------------------------------
36
28
template <typename T>
37
- modm::Vector<T, 2 >::Vector(
29
+ constexpr modm::Vector<T, 2 >::Vector(
38
30
const modm::Vector<T, 1 > &inX,
39
31
const modm::Vector<T, 1 > &inY) :
40
32
x (inX.x),
@@ -44,15 +36,15 @@ modm::Vector<T, 2>::Vector(
44
36
45
37
// ----------------------------------------------------------------------------
46
38
template <typename T>
47
- modm::Vector<T, 2 >::Vector(const T &inX, const modm::Vector<T, 1 > &inY) :
39
+ constexpr modm::Vector<T, 2 >::Vector(const T &inX, const modm::Vector<T, 1 > &inY) :
48
40
x (inX),
49
41
y(inY.x)
50
42
{
51
43
}
52
44
53
45
// ----------------------------------------------------------------------------
54
46
template <typename T>
55
- modm::Vector<T, 2 >::Vector(const modm::Vector<T, 1 > &inX, const T &inY) :
47
+ constexpr modm::Vector<T, 2 >::Vector(const modm::Vector<T, 1 > &inX, const T &inY) :
56
48
x (inX.x),
57
49
y(inY)
58
50
{
@@ -406,15 +398,15 @@ modm::Vector<T, 2>::operator - () const
406
398
407
399
// ----------------------------------------------------------------------------
408
400
template <typename T>
409
- modm::Vector<T, 2 >
401
+ constexpr modm::Vector<T, 2 >
410
402
modm::Vector<T, 2 >::operator - (const modm::Vector<T, 2 > &rhs) const
411
403
{
412
404
return modm::Vector<T, 2 >(x - rhs.x , y - rhs.y );
413
405
}
414
406
415
407
// ----------------------------------------------------------------------------
416
408
template <typename T>
417
- modm::Vector<T, 2 >
409
+ constexpr modm::Vector<T, 2 >
418
410
modm::Vector<T, 2 >::operator + (const modm::Vector<T, 2 > &rhs) const
419
411
{
420
412
return modm::Vector<T, 2 >(x + rhs.x , y + rhs.y );
0 commit comments