colognechip integration: apply review remarks

* add missing #include <string>
* add comment to part.hpp why highest nibble should be kept
* remove _reverseOrder variable from colognechipCfgParser.{hpp,cpp}
* rename cfgDone() to to a more meaningfull waitCfgDone()
This commit is contained in:
Patrick Urban
2021-12-12 11:55:10 +01:00
parent dd0d668d96
commit e252e713dd
5 changed files with 11 additions and 12 deletions
+2 -2
View File
@@ -8,9 +8,9 @@
#include "colognechipCfgParser.hpp"
CologneChipCfgParser::CologneChipCfgParser(const std::string &filename, bool reverseOrder):
CologneChipCfgParser::CologneChipCfgParser(const std::string &filename):
ConfigBitstreamParser(filename, ConfigBitstreamParser::ASCII_MODE,
false), _reverseOrder(reverseOrder)
false)
{}
int CologneChipCfgParser::parse()