COMP/ENH: Update assignments to constructors to compile with clang. Add tensor->triad conversion.

This commit is contained in:
laurence
2012-12-24 15:36:50 +00:00
parent 180cb0bbc1
commit 9989b015a6
14 changed files with 88 additions and 41 deletions

View File

@ -103,6 +103,9 @@ public:
//- Construct given SymmTensor
inline Tensor(const SymmTensor<Cmpt>&);
//- Construct given triad
inline Tensor(const Vector<Vector<Cmpt> >&);
//- Construct given the three vector components
inline Tensor
(
@ -165,6 +168,9 @@ public:
//- Assign to a SymmTensor
inline void operator=(const SymmTensor<Cmpt>&);
//- Assign to a triad
inline void operator=(const Vector<Vector<Cmpt> >&);
};