From a868c7bc8beb10fe91306efbae06e55312c02619 Mon Sep 17 00:00:00 2001 From: chaplin89 Date: Fri, 8 Dec 2017 13:09:37 +0100 Subject: [PATCH] Avoid generating multiple time the forward declarations in the headers generated by codegen_style. --- Telegram/SourceFiles/codegen/style/generator.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/codegen/style/generator.cpp b/Telegram/SourceFiles/codegen/style/generator.cpp index 7d01c6c52..7c2744eaf 100644 --- a/Telegram/SourceFiles/codegen/style/generator.cpp +++ b/Telegram/SourceFiles/codegen/style/generator.cpp @@ -20,6 +20,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org */ #include "codegen/style/generator.h" +#include #include #include #include @@ -609,10 +610,14 @@ bool Generator::writeStructsForwardDeclarations() { } header_->newline(); - bool result = module_.enumVariables([this](const Variable &value) -> bool { + std::set alreadyDeclaredTypes; + bool result = module_.enumVariables([this, &alreadyDeclaredTypes](const Variable &value) -> bool { if (value.value.type().tag == structure::TypeTag::Struct) { if (!module_.findStructInModule(value.value.type().name, module_)) { - header_->stream() << "struct " << value.value.type().name.back() << ";\n"; + if (alreadyDeclaredTypes.find(value.value.type().name.back()) == alreadyDeclaredTypes.end()) { + header_->stream() << "struct " << value.value.type().name.back() << ";\n"; + alreadyDeclaredTypes.emplace(value.value.type().name.back()); + } } } return true;