Skip to content
Snippets Groups Projects
Commit f72d0b39 authored by Julien Malik's avatar Julien Malik
Browse files

COMP: fix compilation with VC2013

parent 9fbacda5
Branches
Tags
No related merge requests found
...@@ -373,24 +373,24 @@ MassOfBelief<TLabel, TMass> ...@@ -373,24 +373,24 @@ MassOfBelief<TLabel, TMass>
Superclass::PrintSelf(os, indent); Superclass::PrintSelf(os, indent);
// Display mass of belief universe // Display mass of belief universe
os << indent << "Mass of belief universe: " os << indent << "Mass of belief universe: ";
<< PrintLabelSet(os, this->GetUniverse()) PrintLabelSet(os, this->GetUniverse());
<< std::endl; os << std::endl;
// Display mass of belief support // Display mass of belief support
os<<indent<<"Mass of belief support: " os << indent << "Mass of belief support: ";
<<PrintLabelSetOfSet(os, this->GetSupport()) PrintLabelSetOfSet(os, this->GetSupport());
<<std::endl; os << std::endl;
// Display individual masses // Display individual masses
for(typename MassMapType::const_iterator it = m_MassesMap.begin(); for(typename MassMapType::const_iterator it = m_MassesMap.begin();
it!=m_MassesMap.end(); ++it) it!=m_MassesMap.end(); ++it)
{ {
os<< indent os<< indent;
<< PrintLabelSet(os, it->first) PrintLabelSet(os, it->first);
<< " has mass "<<(it->second)<<std::endl; os << " has mass " << (it->second) << std::endl;
} }
os<<indent<<"Other masses are null"<<std::endl; os << indent << "Other masses are null" << std::endl;
} }
template <class TLabel, class TMass> template <class TLabel, class TMass>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment