Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 279160
Collapse All | Expand All

(-)a/src/OSspecific/Unix/signals/sigFpe.C (+1 lines)
Lines 39-44 License Link Here
39
39
40
#   include <fenv.h>
40
#   include <fenv.h>
41
#   include <malloc.h>
41
#   include <malloc.h>
42
#   include <stdint.h>
42
43
43
#elif defined(sgiN32) || defined(sgiN32Gcc)
44
#elif defined(sgiN32) || defined(sgiN32Gcc)
44
45
(-)a/src/meshTools/triSurface/surfaceFeatures/surfaceFeatures.C (-2 / +4 lines)
Lines 763-772 Foam::Map<Foam::label> Foam::surfaceFeatures::nearestSamples Link Here
763
    const scalarField& maxDist
763
    const scalarField& maxDist
764
) const
764
) const
765
{
765
{
766
    treeBoundBox tbb(samples);
766
    // Build tree out of all samples.
767
    // Build tree out of all samples.
767
    octree<octreeDataPoint> ppTree
768
    octree<octreeDataPoint> ppTree
768
    (
769
    (
769
        treeBoundBox(samples),      // overall search domain
770
        tbb,      // overall search domain
770
        octreeDataPoint(samples),   // all information needed to do checks
771
        octreeDataPoint(samples),   // all information needed to do checks
771
        1,          // min levels
772
        1,          // min levels
772
        20.0,       // maximum ratio of cubes v.s. cells
773
        20.0,       // maximum ratio of cubes v.s. cells
Lines 864-873 Foam::Map<Foam::label> Foam::surfaceFeatures::nearestSamples Link Here
864
    scalar maxSearch = max(maxDist);
865
    scalar maxSearch = max(maxDist);
865
    vector span(maxSearch, maxSearch, maxSearch);
866
    vector span(maxSearch, maxSearch, maxSearch);
866
867
868
    treeBoundBox tbb(samples);
867
    // octree.shapes holds reference!
869
    // octree.shapes holds reference!
868
    octree<octreeDataPoint> ppTree
870
    octree<octreeDataPoint> ppTree
869
    (
871
    (
870
        treeBoundBox(samples),      // overall search domain
872
        tbb,      // overall search domain
871
        octreeDataPoint(samples),   // all information needed to do checks
873
        octreeDataPoint(samples),   // all information needed to do checks
872
        1,          // min levels
874
        1,          // min levels
873
        20.0,       // maximum ratio of cubes v.s. cells
875
        20.0,       // maximum ratio of cubes v.s. cells

Return to bug 279160