Skip to content
Snippets Groups Projects
Verified Commit acf84f22 authored by Alberto Miranda's avatar Alberto Miranda :hotsprings:
Browse files

Provide template specialization for undefined references

parent 77beb5cf
No related branches found
No related tags found
1 merge request!30Resolve "Refactor library RPC implementation of `admire::transfer_dataset`"
......@@ -1423,12 +1423,31 @@ entity::scope() const {
return m_pimpl->scope();
}
template <typename T>
T
entity::data() const {
return m_pimpl->data<T>();
template <>
admire::node
entity::data<admire::node>() const {
return m_pimpl->data<admire::node>();
}
template <>
admire::job
entity::data<admire::job>() const {
return m_pimpl->data<admire::job>();
}
template <>
admire::dataset
entity::data<admire::dataset>() const {
return m_pimpl->data<admire::dataset>();
}
template <>
admire::transfer
entity::data<admire::transfer>() const {
return m_pimpl->data<admire::transfer>();
}
class limit::impl {
public:
......
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