Skip to content

Commit

Permalink
-some fix for older C++ standard
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@24457 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
RuedKamp committed Feb 6, 2015
1 parent 37ed16a commit 8c864cc
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -21,4 +21,7 @@ enum SIMULATION_ERROR {
typedef boost::error_info<struct tag_error_code,SIMULATION_ERROR> error_id;
typedef boost::error_info<struct tag_error_message,string> error_message;
//Exception class for all exceptions that can occur
struct ModelicaSimulationError: virtual boost::exception, virtual std::exception { };
struct ModelicaSimulationError: virtual boost::exception, virtual std::exception
{
virtual ~ModelicaSimulationError() throw() {};
};

0 comments on commit 8c864cc

Please sign in to comment.