From 3b3506717e409d4132347a1b4c26b395ca76cba1 Mon Sep 17 00:00:00 2001 From: Nathan Hjelm Date: Wed, 27 Mar 2013 22:07:23 +0000 Subject: [PATCH] de-deprecate mca_base_param_init mca_base_param_finalize as they will be needed until the mca_base_param shim layer goes away This commit was SVN r28248. --- opal/mca/base/mca_base_param.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opal/mca/base/mca_base_param.h b/opal/mca/base/mca_base_param.h index 1bf0d35226..d0eba950c4 100644 --- a/opal/mca/base/mca_base_param.h +++ b/opal/mca/base/mca_base_param.h @@ -162,7 +162,7 @@ BEGIN_C_DECLS * invoked internally (by mca_base_open()) and is only documented * here for completeness. */ - OPAL_DECLSPEC int mca_base_param_init(void) __opal_attribute_deprecated__; + OPAL_DECLSPEC int mca_base_param_init(void); /** * Recache the MCA param files @@ -853,7 +853,7 @@ OPAL_DECLSPEC int mca_base_param_check_exclusive_string(const char *type_a, * when the process is shutting down (e.g., during MPI_FINALIZE). It * is only documented here for completeness. */ - OPAL_DECLSPEC int mca_base_param_finalize(void) __opal_attribute_deprecated__; + OPAL_DECLSPEC int mca_base_param_finalize(void); END_C_DECLS