| # | Line 107 | Line 107 | namespace OpenMD { | |
|---|---|---|
| 107 | return *this; | |
| 108 | } | |
| 109 | ||
| 110 | < | template<typename T> |
| 111 | < | inline Vector(const T& s){ |
| 110 | > | // template<typename T> |
| 111 | > | // inline Vector(const T& s){ |
| 112 | > | inline Vector(const Real& s) { |
| 113 | for (unsigned int i = 0; i < Dim; i++) | |
| 114 | < | this->data_[i] = s; |
| 114 | > | this->data_[i] = s; |
| 115 | } | |
| 116 | ||
| 117 | /** Constructs and initializes a Vector from an array */ | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |