Skip to content

Commit

Permalink
Reinstate NumberVector constructor test.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwpeterson committed Dec 5, 2017
1 parent a6b4e27 commit 154871b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion contrib/metaphysicl/0.2.0/test/testopt_unit.C
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ int main(void)
NumberArray<3, float> NA = 0;
std::cos(NA);

// NumberVector<3, float> NV = 0;
NumberVector<3, float> NV = 0;
// Avoid unused variable compiler warnings.
(void)NV;
// std::cos(NV);

SparseNumberVectorUnitVector<3, 2, float>::type SNV;
Expand Down

0 comments on commit 154871b

Please sign in to comment.