Skip to content
Snippets Groups Projects
Commit 27d42a15 authored by Christian Engwer's avatar Christian Engwer
Browse files

test fvector with size=0

[[Imported from SVN: r5320]]
parent b3470821
No related branches found
No related tags found
No related merge requests found
......@@ -80,12 +80,15 @@ public:
int main()
{
try {
FieldVectorTest<int, 0>();
FieldVectorTest<int, 1>();
FieldVectorTest<int, 2>();
FieldVectorTest<int, 3>();
FieldVectorTest<float, 0>();
FieldVectorTest<float, 1>();
FieldVectorTest<float, 2>();
FieldVectorTest<float, 3>();
FieldVectorTest<double, 0>();
FieldVectorTest<double, 1>();
FieldVectorTest<double, 2>();
FieldVectorTest<double, 3>();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment