get rid of usage of boost::join

This commit is contained in:
Arne Morten Kvarving
2020-02-18 14:45:14 +01:00
parent 26c9a1e3f1
commit 3d83512f09

View File

@@ -19,8 +19,6 @@
#include <set>
#include <boost/algorithm/string/join.hpp>
#include <opm/common/OpmLog/LogUtil.hpp>
#include <opm/parser/eclipse/Deck/DeckSection.hpp>
@@ -86,7 +84,9 @@ bool enable3DPropsTesting() {
const auto& titleKeyword = deck.getKeyword( "TITLE" );
const auto& item = titleKeyword.getRecord( 0 ).getItem( 0 );
std::vector<std::string> itemValue = item.getData<std::string>();
m_title = boost::algorithm::join( itemValue, " " );
for (const auto& entry : itemValue)
m_title += entry + ' ';
m_title.pop_back();
}
initTransMult();