YamlHelper: minor change

This commit is contained in:
tomcw 2020-12-09 20:31:21 +00:00
parent 8304c5738f
commit 86851d86e5
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ void YamlHelper::FinaliseParser(void)
yaml_parser_delete(&m_parser);
}
void YamlHelper::GetNextEvent()
void YamlHelper::GetNextEvent(void)
{
yaml_event_delete(&m_newEvent);
if (!yaml_parser_parse(&m_parser, &m_newEvent))

View File

@ -46,7 +46,7 @@ public:
void GetMapStartEvent(void);
private:
void GetNextEvent();
void GetNextEvent(void);
int ParseMap(MapYaml& mapYaml);
std::string GetMapValue(MapYaml& mapYaml, const std::string &key, bool& bFound);
UINT LoadMemory(MapYaml& mapYaml, const LPBYTE pMemBase, const size_t kAddrSpaceSize);