Skip to content
Snippets Groups Projects
Commit 5e9fb7a3 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Removed useless virtual inheritance

parent a92c609b
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ template< int, typename > class StaticArray; ...@@ -26,7 +26,7 @@ template< int, typename > class StaticArray;
template< typename Element, template< typename Element,
typename Device = Devices::Host, typename Device = Devices::Host,
typename Index = int > typename Index = int >
class Array : public virtual Object class Array : public Object
{ {
public: public:
......
...@@ -20,7 +20,7 @@ namespace Matrices { ...@@ -20,7 +20,7 @@ namespace Matrices {
template< typename Real = double, template< typename Real = double,
typename Device = Devices::Host, typename Device = Devices::Host,
typename Index = int > typename Index = int >
class Matrix : public virtual Object class Matrix : public Object
{ {
public: public:
typedef Real RealType; typedef Real RealType;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment