comparison libinterp/dldfcn/__glpk__.cc @ 21604:d7a268e68e69

maint: Strip trailing whitespace from source files.
author John W. Eaton <jwe@octave.org>
date Mon, 11 Apr 2016 10:53:18 -0400
parents de155ca994d4
children 263d18409fdf
comparison
equal deleted inserted replaced
21603:37cbdf7bffa9 21604:d7a268e68e69
286 286
287 glp_delete_prob (lp); 287 glp_delete_prob (lp);
288 // Request that GLPK free all memory resources. 288 // Request that GLPK free all memory resources.
289 // This prevents reported memory leaks, but isn't strictly necessary. 289 // This prevents reported memory leaks, but isn't strictly necessary.
290 // The memory blocks use are allocated once and don't grow with further 290 // The memory blocks use are allocated once and don't grow with further
291 // calls to glpk so they would be reclaimed anyways when Octave exits. 291 // calls to glpk so they would be reclaimed anyways when Octave exits.
292 glp_free_env (); 292 glp_free_env ();
293 293
294 return errnum; 294 return errnum;
295 } 295 }
296 296