Skip to content

Commit

Permalink
- Remove debug print
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@13724 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
sjoelund committed Oct 30, 2012
1 parent 18a7648 commit 9ef3f0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SimulationRuntime/c/util/real_array.c
Expand Up @@ -1655,7 +1655,7 @@ void create_real_array_from_range(real_array_t *dest, modelica_real start, model

comp_func = (step > 0) ? &real_le : &real_ge;
elements = comp_func(start, stop) ? (((stop - start) / step) + 1) : 0;
fprintf(stderr, "start %g step %g stop %g elements %d\n", start, step, stop, elements);
// fprintf(stderr, "start %g step %g stop %g elements %d\n", start, step, stop, elements);

simple_alloc_1d_real_array(dest, elements);

Expand Down

0 comments on commit 9ef3f0a

Please sign in to comment.