We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In some machines, the compiler warns about -Wmaybe-uninitialized variables.
-Wmaybe-uninitialized
This is caused by some variables whose values are conditionally defined, although a no-matching scenario is never to be expected.
So, this need some improvement to define a default value and some improvement in the series of if conditionals.
if
Some variables presenting this issue:
dh_v_mod
Calc_dt_calor
temper_aux
Thermal_init_3d
p_prox
Swarm_add_remove_2d
p_prox_total
chosen
Swarm_add_remove_3d
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In some machines, the compiler warns about
-Wmaybe-uninitialized
variables.This is caused by some variables whose values are conditionally defined, although a no-matching scenario is never to be expected.
So, this need some improvement to define a default value and some improvement in the series of
if
conditionals.Some variables presenting this issue:
dh_v_mod
inCalc_dt_calor
(main.cpp)temper_aux
inThermal_init_3d
(DM1_3d.cpp)p_prox
inSwarm_add_remove_2d
(DMSwarm_move.cpp)p_prox_total
andchosen
inSwarm_add_remove_3d
(DMSwarm_move.cpp)The text was updated successfully, but these errors were encountered: