*** empty log message ***

This commit is contained in:
jiri 2004-11-21 22:43:24 +00:00
parent b3b6560b8d
commit c2864dd094
1 changed files with 1 additions and 1 deletions

2
vec.h
View File

@ -59,7 +59,7 @@ public:
friend class NRMat<T>;
inline NRVec(): nn(0),v(0),count(0){};
inline explicit NRVec(const int n) : nn(n), v(new T[n]), count(new int(1)) {};
explicit inline NRVec(const int n) : nn(n), v(new T[n]), count(new int(1)) {};
inline NRVec(const T &a, const int n);
inline NRVec(const T *a, const int n);
inline NRVec(const NRVec &rhs);