Skip to content

Commit a83b712

Browse files
authored
Merge pull request #4278 from jwpeterson/drop_deprecated_which_node_am_i
2 parents af93b47 + d790430 commit a83b712

File tree

2 files changed

+0
-19
lines changed

2 files changed

+0
-19
lines changed

include/geom/elem.h

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -462,14 +462,6 @@ class Elem : public ReferenceCountedObject<Elem>,
462462
virtual unsigned int local_edge_node(unsigned int edge,
463463
unsigned int edge_node) const = 0;
464464

465-
#ifdef LIBMESH_ENABLE_DEPRECATED
466-
/**
467-
* This function is deprecated, call local_side_node(side, side_node) instead.
468-
*/
469-
unsigned int which_node_am_i(unsigned int side,
470-
unsigned int side_node) const;
471-
#endif // LIBMESH_ENABLE_DEPRECATED
472-
473465
/**
474466
* \returns \p true if a vertex of \p e is contained
475467
* in this element. If \p mesh_connection is true, looks

src/geom/elem.C

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -901,17 +901,6 @@ unsigned int Elem::which_side_am_i (const Elem * e) const
901901

902902

903903

904-
#ifdef LIBMESH_ENABLE_DEPRECATED
905-
unsigned int Elem::which_node_am_i(unsigned int side,
906-
unsigned int side_node) const
907-
{
908-
libmesh_deprecated();
909-
return local_side_node(side, side_node);
910-
}
911-
#endif // LIBMESH_ENABLE_DEPRECATED
912-
913-
914-
915904
bool Elem::contains_vertex_of(const Elem * e, bool mesh_connection) const
916905
{
917906
// Our vertices are the first numbered nodes

0 commit comments

Comments
 (0)