Skip to content

Commit

Permalink
Fixed warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulKlint committed Oct 7, 2024
1 parent c134cd7 commit d01b8a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/analysis/typepal/Collector.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,7 @@ Collector newCollector(str modelName, map[str,Tree] namedTrees, TypePalConfig co
map[loc,loc] my_physical2logical = ();
try {
my_physical2logical = invertUnique(logical2physical);
} catch MultipleKey(value key, value first, value second):{
} catch MultipleKey(value key, value _first, value _second):{
where = loc l := key ? l : |unknown:///|;
messages += error("Mapping from physical to logical locations is not unique; remove outdated information and try again", where);
return ();
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/typepal/TypePal.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import ParseTree;
import Message;

extend analysis::typepal::Solver;
extend analysis::typepal::Version;
//extend analysis::typepal::Version;

// collectAndSolve shorthand for a common, simple, scenario

Expand Down

0 comments on commit d01b8a0

Please sign in to comment.