Commit 73c183ff authored by Simon Spannagel's avatar Simon Spannagel
Browse files

Avoid having unnamed temporaries around

parent 503cf22b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -667,7 +667,8 @@ void ModuleManager::initialize() {

        // Book per-module performance plots
        if(global_config.get<bool>("performance_plots")) {
            const auto& identifier = module->get_identifier().getIdentifier();
            const auto& module_identifier = module->get_identifier();
            const auto& identifier = module_identifier.getIdentifier();
            const auto& name = (identifier.empty() ? module->get_configuration().getName() : identifier);
            auto title = module->get_configuration().getName() + " event processing time " +
                         (!identifier.empty() ? "for " + identifier : "") + ";time [s];# events";