Skip to content

Commit

Permalink
ext: fix namepsace - clang
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Duda authored and Alexander Duda committed Feb 19, 2016
1 parent 65452d9 commit 90c4488
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/rorocos/rorocos.cc
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,14 @@ orogen_transports::TypelibMarshallerBase* get_typelib_transport(RTT::types::Type
return 0;
}

tuple<RTaskContext*, VALUE, VALUE> getPortReference(VALUE port)
boost::tuple<RTaskContext*, VALUE, VALUE> getPortReference(VALUE port)
{
VALUE task = rb_iv_get(port, "@task");
VALUE task_name = rb_iv_get(task, "@name");
VALUE port_name = rb_iv_get(port, "@name");

RTaskContext& task_context = get_wrapped<RTaskContext>(task);
return make_tuple(&task_context, task_name, port_name);
return boost::make_tuple(&task_context, task_name, port_name);
}

// call-seq:
Expand Down

0 comments on commit 90c4488

Please sign in to comment.