Skip to content

Commit

Permalink
Per #2227, attempt to resolve GHA compilation issues; seneca compilat…
Browse files Browse the repository at this point in the history
…ion works fine
  • Loading branch information
Julie Prestopnik committed Sep 13, 2022
1 parent 26bd8c5 commit 0fbb8b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/tools/other/mode_graphics/color_stack.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class ColorStack {

void clear();

void dump(ostream &, int = 0) const;
void dump(std::ostream &, int = 0) const;

void set_alloc_inc(int = 0); // 0 means default value (10)

Expand Down
4 changes: 2 additions & 2 deletions src/tools/other/mode_graphics/plot_mode_field.cc
Original file line number Diff line number Diff line change
Expand Up @@ -978,9 +978,9 @@ map_linewidth = get_dict_double (dict, linewidth_name);

map_color = get_dict_color (dict, linecolor_name);

std::in.open(map_filename.c_str());
in.open(map_filename.c_str());

if ( !std::in ) {
if ( !in ) {

mlog << Error
<< "\n\n " << program_name << ": draw_mapfile() -> unable to open map data file \""
Expand Down

0 comments on commit 0fbb8b4

Please sign in to comment.