From 3f36deaf46c7677ea2837eb4e2490179feac9c2b Mon Sep 17 00:00:00 2001 From: John Peterson Date: Fri, 14 Nov 2025 09:21:12 -0600 Subject: [PATCH] Drop deprecated Parallel::Utils::is_sorted() This has been deprecated since 752d12ea31 (Apr 2022), in the 1.8.x release series and later. --- include/parallel/parallel_conversion_utils.h | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/include/parallel/parallel_conversion_utils.h b/include/parallel/parallel_conversion_utils.h index 32d1a6476af..58f6e387ba0 100644 --- a/include/parallel/parallel_conversion_utils.h +++ b/include/parallel/parallel_conversion_utils.h @@ -40,22 +40,6 @@ namespace libMesh namespace Parallel { namespace Utils { -/** - * \returns \p true if the vector \p v is sorted, \p false otherwise. - * - * This was implemented because std::is_sorted() was an STL extension - * at the time. - */ -#ifdef LIBMESH_ENABLE_DEPRECATED -template -inline -bool is_sorted (const std::vector & v) -{ - libmesh_deprecated(); - return std::is_sorted(v.begin(), v.end()); -} -#endif // LIBMESH_ENABLE_DEPRECATED - /** * A utility function which converts whatever \p KeyType is to * a \p double for the histogram bounds