diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-03-01 22:34:35 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-03-01 22:34:35 +0100 |
commit | 6fcfe0a5cf8f53658e50e346076768eec229e695 (patch) | |
tree | 69d9ce555c3a671e2d3c0dfe46834d6fcb183753 /bnf.h | |
parent | 10c2b7f9b6676dafd62d0eeda507b5ee5c6db216 (diff) |
Vector invalidation fix
Diffstat (limited to 'bnf.h')
-rw-r--r-- | bnf.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -11,6 +11,7 @@ using namespace std::string_literals; using BNF = std::map<std::string, std::vector<std::vector<std::string>>>; -std::map<std::string, std::set<std::string>> Reverse(BNF bnf); +std::map<std::string, std::set<std::string>> Reverse(BNF bnf); // unused now, remove? +std::map<std::string, std::set<std::string>> reverseFirst(BNF bnf); BNF SubBNF(const BNF& bnf, const std::string& top); |