~corrado-maurini/dolfin/tao

« back to all changes in this revision

Viewing changes to dolfin/mesh/Edge.h

  • Committer: corrado maurini
  • Date: 2012-12-18 12:16:08 UTC
  • mfrom: (6685.78.207 trunk)
  • Revision ID: corrado.maurini@upmc.fr-20121218121608-nk82ly9jgsld9u84
updating with trunk, fix uint in TAO solver and hacking the check for tao FindTAO.cmake

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
    /// *Arguments*
45
45
    ///     mesh (_Mesh_)
46
46
    ///         The mesh.
47
 
    ///     index (uint)
 
47
    ///     index (std::size_t)
48
48
    ///         Index of the edge.
49
 
    Edge(const Mesh& mesh, uint index) : MeshEntity(mesh, 1, index) {}
 
49
    Edge(const Mesh& mesh, std::size_t index) : MeshEntity(mesh, 1, index) {}
50
50
 
51
51
    /// Create edge from mesh entity
52
52
    ///