Skip to content
Snippets Groups Projects
Commit 051c7d93 authored by Vedran Miletić's avatar Vedran Miletić Committed by Andrey Alekseenko
Browse files

Renamed member of gmx::ProcessFrameConversion::FrameModule struct to avoid shadowing

parent f376fe20
No related branches found
No related tags found
Loading
......@@ -120,8 +120,8 @@ void ProcessFrameConversion::convertFrame(t_trxframe* input)
addAndCheckGuarantee(guarantee());
for (auto& method : moduleChain_)
{
method.module->convertFrame(input);
addAndCheckGuarantee(method.module->guarantee());
method.module_->convertFrame(input);
addAndCheckGuarantee(method.module_->guarantee());
}
}
} // namespace gmx
......@@ -147,9 +147,9 @@ private:
struct FrameModule
{
//! Initializes module, stolen from datamodulemanager.
explicit FrameModule(FrameConverterPointer module) : module(std::move(module)) {}
explicit FrameModule(FrameConverterPointer module) : module_(std::move(module)) {}
//! Pointer to module.
FrameConverterPointer module;
FrameConverterPointer module_;
};
//! Shorthand for list of chained modules
using FrameModuleList = std::vector<FrameModule>;
......
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