From 6f39b580fefcdbbb98b78b7e1e4c41ec909f7a61 Mon Sep 17 00:00:00 2001 From: dbv Date: Thu, 29 Dec 2016 16:42:24 +0300 Subject: [PATCH] Coding rules fix. --- src/ExchangePlugin/ExchangePlugin_Dump.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ExchangePlugin/ExchangePlugin_Dump.cpp b/src/ExchangePlugin/ExchangePlugin_Dump.cpp index f0f740671..5c5ee4665 100644 --- a/src/ExchangePlugin/ExchangePlugin_Dump.cpp +++ b/src/ExchangePlugin/ExchangePlugin_Dump.cpp @@ -54,7 +54,8 @@ void ExchangePlugin_Dump::dump(const std::string& theFileName) for(std::list::const_iterator aFeatIt = aFeatures.begin(); aFeatIt != aFeatures.end(); ++aFeatIt) { - ResultPartPtr aResultPart = std::dynamic_pointer_cast((*aFeatIt)->firstResult()); + ResultPartPtr aResultPart = + std::dynamic_pointer_cast((*aFeatIt)->firstResult()); if(aResultPart.get()) { if(!aResultPart->isActivated()) { setError("Error: Not all parts are loaded. Can not dump."); -- 2.39.2