Skip to content

Commit

Permalink
fix index_t vs int issue caused by warning resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrush committed Oct 30, 2020
1 parent 7ec911a commit a499723
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/relay/conduit_relay_io_blueprint.cpp
Expand Up @@ -691,7 +691,7 @@ void write_mesh(const Node &mesh,
// get the number of local domains and the cycle info
// -----------------------------------------------------------

index_t local_num_domains = multi_dom.number_of_children();
int local_num_domains = (int)multi_dom.number_of_children();
// figure out what cycle we are
if(local_num_domains > 0 && is_valid)
{
Expand Down

0 comments on commit a499723

Please sign in to comment.