Skip to content
Snippets Groups Projects
Commit 97554f18 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Update usages

parent d0ab5e86
No related branches found
No related tags found
1 merge request!325Add to/fromAron() for one-sided optional and test utilities for C++/Python conversion
......@@ -26,7 +26,7 @@ namespace armarx::aron
}
template<class ReaderT, class DtoT, class BoT>
requires (data::isReader<ReaderT> && !DtoAndBoAreSame<DtoT, BoT>)
requires (data::isReader<ReaderT> && !detail::DtoAndBoAreSame<DtoT, BoT>)
inline void read(ReaderT& aron_r, typename ReaderT::InputType& input, BoT& ret)
{
DtoT aron;
......@@ -36,7 +36,7 @@ namespace armarx::aron
}
template<class WriterT, class DtoT, class BoT>
requires (data::isWriter<WriterT> && !DtoAndBoAreSame<DtoT, BoT>)
requires (data::isWriter<WriterT> && !detail::DtoAndBoAreSame<DtoT, BoT>)
inline void write(WriterT& aron_w, const BoT& input, typename WriterT::ReturnType& ret, const armarx::aron::Path& aron_p = armarx::aron::Path())
{
DtoT aron;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment