Skip to content

Commit

Permalink
[squash] writer: fix misaligned func parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
dongahn committed Dec 4, 2019
1 parent 4824372 commit 9d5a973
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions resource/writers/match_writers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,8 @@ int rv1_match_writers_t::emit_vtx (const std::string &prefix,
}

int rv1_match_writers_t::emit_edg (const std::string &prefix,
const f_resource_graph_t &g,
const edg_t &e)
const f_resource_graph_t &g,
const edg_t &e)
{
int rc = rlite.emit_edg (prefix, g, e);
rc += jgf.emit_edg (prefix, g, e);
Expand Down Expand Up @@ -353,10 +353,10 @@ int rv1_nosched_match_writers_t::emit (std::stringstream &out)
}

int rv1_nosched_match_writers_t::emit_vtx (const std::string &prefix,
const f_resource_graph_t &g,
const vtx_t &u,
unsigned int needs,
bool exclusive)
const f_resource_graph_t &g,
const vtx_t &u,
unsigned int needs,
bool exclusive)
{
return rlite.emit_vtx (prefix, g, u, needs, exclusive);
}
Expand Down

0 comments on commit 9d5a973

Please sign in to comment.