Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/triangleintersectionlist.cpp

    r36166d r952f38  
    1111#include "Helpers/MemDebug.hpp"
    1212
     13#include <boost/scoped_ptr.hpp>
     14
    1315#include "triangleintersectionlist.hpp"
    1416
    15 #include "info.hpp"
     17#include "Helpers/Info.hpp"
    1618#include "tesselation.hpp"
    17 #include "vector.hpp"
    18 #include "verbose.hpp"
     19#include "LinearAlgebra/Vector.hpp"
     20#include "Helpers/Verbose.hpp"
    1921
    2022/** Constructor for class TriangleIntersectionList.
     
    119121
    120122  // get closest points
    121   DistanceToPointMap * points = Tess->FindClosestBoundaryPointsToVector(Point,Vicinity);
     123  boost::scoped_ptr< DistanceToPointMap > points(Tess->FindClosestBoundaryPointsToVector(Point,Vicinity));
    122124  if (points == NULL) {
    123125    DoeLog(1) && (eLog()<< Verbose(1) << "There is no nearest point: too far away from the surface." << endl);
Note: See TracChangeset for help on using the changeset viewer.