Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Eliminate conflicting type errors generated by GCC15 #306

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/high-level/papi_hl.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ static int _internal_hl_checkCounter ( char* counter );
static int _internal_hl_determine_rank();
static char *_internal_hl_remove_spaces( char *str, int mode );
static int _internal_hl_determine_default_events();
static int _internal_hl_read_user_events();
static int _internal_hl_read_user_events(const char *user_events);
static int _internal_hl_new_component(int component_id, components_t *component);
static int _internal_hl_add_event_to_component(char *event_name, int event,
short event_type, components_t *component);
Expand Down
2 changes: 1 addition & 1 deletion src/papi_vector.c
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ _papi_hwi_innoculate_os_vector( papi_os_vector_t * v )
if ( !v->update_shlib_info )
v->update_shlib_info = ( int ( * )( papi_mdi_t * ) ) vec_int_dummy;
if ( !v->get_system_info )
v->get_system_info = ( int ( * )( ) ) vec_int_dummy;
v->get_system_info = ( int ( * )( papi_mdi_t * ) ) vec_int_dummy;

if ( !v->get_memory_info )
v->get_memory_info =
Expand Down