Skip to content
Snippets Groups Projects
Commit dfad74f1 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[App] Fix unused variable warning.

If component transport is not enabled in
the configuration, the variable is unused.
parent ce74dd99
No related branches found
No related tags found
No related merge requests found
...@@ -563,7 +563,8 @@ void ProjectData::parseProcesses( ...@@ -563,7 +563,8 @@ void ProjectData::parseProcesses(
BaseLib::ConfigTree const& processes_config, BaseLib::ConfigTree const& processes_config,
std::string const& project_directory, std::string const& project_directory,
std::string const& output_directory, std::string const& output_directory,
ChemistryLib::ChemicalSolverInterface* const chemical_solver_interface) [[maybe_unused]] ChemistryLib::ChemicalSolverInterface* const
chemical_solver_interface)
{ {
(void)project_directory; // to avoid compilation warning (void)project_directory; // to avoid compilation warning
(void)output_directory; // to avoid compilation warning (void)output_directory; // to avoid compilation warning
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment