Skip to content

Commit 96ddf2f

Browse files
authored
Merge pull request #4275 from jwpeterson/deprecated_set_unique_id
Drop deprecated DofObject::set_unique_id() API
2 parents 910736a + 61e99c6 commit 96ddf2f

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

include/base/dof_object.h

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -181,15 +181,6 @@ class DofObject : public ReferenceCountedObject<DofObject>
181181
*/
182182
unique_id_type unique_id () const;
183183

184-
#ifdef LIBMESH_ENABLE_DEPRECATED
185-
/**
186-
* \returns The globally \p unique_id for this \p DofObject as a
187-
* writable reference. Deprecated; use the API taking an input
188-
* instead.
189-
*/
190-
unique_id_type & set_unique_id ();
191-
#endif // LIBMESH_ENABLE_DEPRECATED
192-
193184
/**
194185
* Sets the \p unique_id for this \p DofObject
195186
*/
@@ -853,21 +844,6 @@ unique_id_type DofObject::unique_id () const
853844

854845

855846

856-
#ifdef LIBMESH_ENABLE_DEPRECATED
857-
inline
858-
unique_id_type & DofObject::set_unique_id ()
859-
{
860-
#ifdef LIBMESH_ENABLE_UNIQUE_ID
861-
libmesh_deprecated();
862-
return _unique_id;
863-
#else
864-
libmesh_not_implemented();
865-
#endif
866-
}
867-
#endif // LIBMESH_ENABLE_DEPRECATED
868-
869-
870-
871847
inline
872848
void DofObject::set_unique_id (unique_id_type new_id)
873849
{

0 commit comments

Comments
 (0)