mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Issue 163
git-svn-id: https://zxing.googlecode.com/svn/trunk@897 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
086cdca094
commit
938f5cf618
|
@ -37,7 +37,7 @@ namespace common {
|
|||
protected:
|
||||
public:
|
||||
valarray<T> values_;
|
||||
Array(size_t n) : Counted(), values_(n) { }
|
||||
Array(size_t n) : Counted(), values_(T(), n) { }
|
||||
Array(T *ts, size_t n) : Counted(), values_(ts, n) { }
|
||||
Array(T v, size_t n) : Counted(), values_(v, n) { }
|
||||
Array(valarray<T> &v) : Counted(), values_(v) { }
|
||||
|
|
Loading…
Reference in a new issue