summaryrefslogtreecommitdiff
path: root/src/parsing.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parsing.h')
-rw-r--r--src/parsing.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/parsing.h b/src/parsing.h
index d59b3bd7c..80d4db9fb 100644
--- a/src/parsing.h
+++ b/src/parsing.h
@@ -43,15 +43,6 @@ struct ParseException {
void dump(std::ostream& o) const;
};
-struct MapParseException {
- std::string text;
-
- MapParseException() : text("unknown parse error") {}
- MapParseException(std::string text) : text(text) {}
-
- void dump(std::ostream& o) const;
-};
-
// Helper for parsers that may not have unique label names. This transforms
// the names into unique ones, as required by Binaryen IR.
struct UniqueNameMapper {