CREATE_PROJECT: Remove useless attribute from ProjectProvider

Move it to MSVC where it's really needed.
This commit is contained in:
Le Philousophe
2025-11-11 19:20:51 +01:00
committed by Lars Sundström
parent 311e01d687
commit 96be501f58
10 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -27,8 +27,8 @@
namespace CreateProjectTool {
CodeBlocksProvider::CodeBlocksProvider(StringList &global_warnings, std::map<std::string, StringList> &project_warnings, StringList &global_errors, const int version)
: ProjectProvider(global_warnings, project_warnings, global_errors, version) {
CodeBlocksProvider::CodeBlocksProvider(StringList &global_warnings, std::map<std::string, StringList> &project_warnings, StringList &global_errors)
: ProjectProvider(global_warnings, project_warnings, global_errors) {
}
void CodeBlocksProvider::createWorkspace(const BuildSetup &setup) {