Skip to content

Commit

Permalink
align using boost::get with usage of tuple (#3522)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfranke committed Oct 25, 2015
1 parent 0b4c125 commit 7302897
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion SimulationRuntime/cpp/Include/Core/Modelica.h
Expand Up @@ -47,7 +47,6 @@ using std::map;
using std::pair;
using std::make_pair;
using namespace boost::assign;
using boost::get;
using std::max;
using std::min;
using std::string;
Expand Down Expand Up @@ -80,6 +79,7 @@ using std::runtime_error;
using std::make_tuple;
using std::array;
using std::minmax_element;
using std::get;
using std::tuple;
using std::shared_ptr;
using std::weak_ptr;
Expand All @@ -88,12 +88,14 @@ using std::runtime_error;
#else
#if defined(_MSC_VER)
#include <tuple>
using std::get;
using std::tuple;
using std::make_tuple;
using std::minmax_element;
#else
#include <boost/tuple/tuple.hpp>
#include <boost/algorithm/minmax_element.hpp>
using boost::get;
using boost::tuple;
using boost::make_tuple;
using boost::minmax_element;
Expand Down

0 comments on commit 7302897

Please sign in to comment.