Skip to content

Commit d4f0a41

Browse files
committed
formatting
1 parent a9cbec0 commit d4f0a41

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cli/commands/codegen.cc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -127,12 +127,12 @@ int ecsact::cli::detail::codegen_command(int argc, char* argv[]) {
127127
bool invalid_plugins = false;
128128

129129
for(auto plugin_arg : args.at("--plugin").asStringList()) {
130-
std::vector<fs::path> checked_plugin_paths;
131-
auto plugin_path = resolve_plugin_path(
132-
plugin_arg,
133-
default_plugins_dir,
134-
checked_plugin_paths
135-
);
130+
auto checked_plugin_paths = std::vector<fs::path>{};
131+
auto plugin_path = resolve_plugin_path(
132+
plugin_arg,
133+
default_plugins_dir,
134+
checked_plugin_paths
135+
);
136136

137137
if(plugin_path) {
138138
boost::system::error_code ec;

0 commit comments

Comments
 (0)