Ticket #11569: Vector.hpp

File Vector.hpp, 134 bytes (added by William R. Deever <wrdeever@…>, 7 years ago)

Minimal test case that throws on completion of unit test

Line 
1class Vector
2{
3public:
4 Vector(void);
5 ~Vector(void);
6 double operator[](const int n) const;
7
8private:
9 double components_[2];
10};