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

Added constness to flags #571

Merged
merged 1 commit into from
May 31, 2023
Merged
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
1 change: 1 addition & 0 deletions doc/author_andreev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
I place my contributions to t8code under the FreeBSD license. Evgenii Andreev ([email protected])
14 changes: 7 additions & 7 deletions src/t8_forest/t8_forest.c
Original file line number Diff line number Diff line change
Expand Up @@ -1445,14 +1445,14 @@ t8_forest_compute_elements_offset (t8_forest_t forest)
int
t8_forest_write_vtk_ext (t8_forest_t forest,
const char *fileprefix,
int write_treeid,
int write_mpirank,
int write_level,
int write_element_id,
int write_ghosts,
int write_curved,
const int write_treeid,
const int write_mpirank,
const int write_level,
const int write_element_id,
const int write_ghosts,
const int write_curved,
int do_not_use_API,
int num_data, t8_vtk_data_field_t *data)
const int num_data, t8_vtk_data_field_t *data)
{
T8_ASSERT (forest != NULL);
T8_ASSERT (forest->rc.refcount > 0);
Expand Down
14 changes: 7 additions & 7 deletions src/t8_forest/t8_forest_io.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,14 @@ void t8_forest_save (t8_forest_t forest);
*/
int t8_forest_write_vtk_ext (t8_forest_t forest,
const char *fileprefix,
int write_treeid,
int write_mpirank,
int write_level,
int write_element_id,
int write_ghosts,
int write_curved,
const int write_treeid,
const int write_mpirank,
const int write_level,
const int write_element_id,
const int write_ghosts,
const int write_curved,
int do_not_use_API,
int num_data,
const int num_data,
t8_vtk_data_field_t *data);

/** Write the forest in a parallel vtu format. Writes one master
Expand Down