From ee9093c373963ed9cdf71041ff49422863b77311 Mon Sep 17 00:00:00 2001 From: Nathan Hjelm Date: Fri, 26 May 2017 10:40:19 -0600 Subject: [PATCH] mpi/cxx: remove nonexistent function from cxx glue This commit removes a nonexistent function that was causing build problems under certain environments. Reference #3442 Signed-off-by: Nathan Hjelm --- ompi/mpi/cxx/cxx_glue.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ompi/mpi/cxx/cxx_glue.h b/ompi/mpi/cxx/cxx_glue.h index 8cb906f9f79..a5710d954f9 100644 --- a/ompi/mpi/cxx/cxx_glue.h +++ b/ompi/mpi/cxx/cxx_glue.h @@ -1,6 +1,6 @@ /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */ /* - * Copyright (c) 2016 Los Alamos National Security, LLC. All rights + * Copyright (c) 2016-2017 Los Alamos National Security, LLC. All rights * reserved. * Copyright (c) 2016 Research Organization for Information Science * and Technology (RIST). All rights reserved. @@ -15,7 +15,6 @@ #define OMPI_CXX_COMM_GLUE_H #include "ompi_config.h" -#include "ompi/errhandler/errhandler.h" #include #include "mpi.h" @@ -81,9 +80,6 @@ ompi_cxx_intercept_file_extra_state_t *ompi_cxx_new_intercept_state (void *read_fn_cxx, void *write_fn_cxx, void *extent_fn_cxx, void *extra_state_cxx); -void ompi_cxx_errhandler_set_cxx_dispatch_fn (struct ompi_errhandler_t *errhandler, - ompi_errhandler_cxx_dispatch_fn_t *dispatch_fn); - void ompi_cxx_errhandler_set_callbacks (struct ompi_errhandler_t *errhandler, MPI_Comm_errhandler_function *eh_comm_fn, ompi_file_errhandler_fn *eh_file_fn, MPI_Win_errhandler_function *eh_win_fn);