Skip to content
Snippets Groups Projects
Commit c6746c8c authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Fix of using of using in Atomic.h

parent 099ae2fb
No related branches found
No related tags found
1 merge request!116Documentation for linear solvers and preconditioners
......@@ -100,12 +100,13 @@ public:
template< typename T >
class Atomic< T, Devices::Sequential > : public Atomic< T, Devices::Host >
{
using Base = Atomic< T, Devices::Host >;
public:
using Atomic;
using operator=;
using fetch_max;
using fetch_min;
using Base::Atomic;
using Base::operator=;
using Base::fetch_max;
using Base::fetch_min;
};
template< typename T >
......
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