trilinos / Trilinos

Primary repository for the Trilinos Project
https://trilinos.org/
Other
1.22k stars 569 forks source link

Teuchos: Use of non-existent method #13558

Closed cgcgcg closed 3 weeks ago

cgcgcg commented 3 weeks ago

@trilinos/teuchos

Bug Report

Teuchos::ConstNonconstObjectContainer::count uses RCP::count() but there is no such method: https://github.com/trilinos/Trilinos/blob/e7fd307aba00df75d7aad0677d45cec45eea4251/packages/teuchos/core/src/Teuchos_ConstNonconstObjectContainer.hpp#L332-L333 What's the correct fix here?

bartlettroscoe commented 3 weeks ago

I would vote for deleting it. Users can just grab the RCP and query the count themselves.

cgcgcg commented 3 weeks ago

@bartlettroscoe Sounds good. I'll delete the method.