Subversion Repositories gelsvn

Rev

Rev 630 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 630 Rev 636
Line 21... Line 21...
21
    public:
21
    public:
22
        
22
        
23
        ArithVecFloat() 
23
        ArithVecFloat() 
24
        {
24
        {
25
#ifndef NDEBUG
25
#ifndef NDEBUG
26
            std::fill_n(this->data, N, CGLA_INIT_VALUE);
26
            std::fill_n(this->data.begin(), N, CGLA_INIT_VALUE);
27
#endif
27
#endif
28
        }
28
        }
29
        
29
        
30
        ArithVecFloat(T a): 
30
        ArithVecFloat(T a): 
31
        ArithVec<T,V,N>(a) {}
31
        ArithVec<T,V,N>(a) {}