Skip to content
Snippets Groups Projects
Commit 7c32ccaa authored by mattijs's avatar mattijs
Browse files

compiler bug workaround

parent fffde6ed
No related branches found
No related tags found
No related merge requests found
......@@ -757,6 +757,8 @@ Foam::Map<Foam::label> Foam::surfaceFeatures::nearestSamples
) const
{
// Build tree out of all samples.
//Note: cannot be done one the fly - gcc4.4 compiler bug.
treeBoundBox bb(samples);
octree<octreeDataPoint> ppTree
......@@ -859,7 +861,7 @@ Foam::Map<Foam::label> Foam::surfaceFeatures::nearestSamples
scalar maxSearch = max(maxDist);
vector span(maxSearch, maxSearch, maxSearch);
// octree.shapes holds reference!
//Note: cannot be done one the fly - gcc4.4 compiler bug.
treeBoundBox bb(samples);
octree<octreeDataPoint> ppTree
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment