From f5c2c70743536c4d299e83d4d52c56c3586567a3 Mon Sep 17 00:00:00 2001
From: Jan Travnicek <Jan.Travnicek@fit.cvut.cz>
Date: Fri, 14 Jun 2019 16:22:05 +0200
Subject: [PATCH] remove not needed virtual method declaration

---
 alib2abstraction/src/abstraction/ValueProvider.hpp | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/alib2abstraction/src/abstraction/ValueProvider.hpp b/alib2abstraction/src/abstraction/ValueProvider.hpp
index 9dd4032a99..443a409ae4 100644
--- a/alib2abstraction/src/abstraction/ValueProvider.hpp
+++ b/alib2abstraction/src/abstraction/ValueProvider.hpp
@@ -46,8 +46,6 @@ public:
 				throw std::domain_error ( "Value not copy constructible" );
 		}
 	}
-
-	virtual bool eval ( ) = 0;
 };
 
 template < class Type >
@@ -66,8 +64,6 @@ public:
 	Type & getValue ( bool ) const {
 		return getData ( );
 	}
-
-	virtual bool eval ( ) = 0;
 };
 
 template < class Type >
@@ -86,8 +82,6 @@ public:
 	const Type & getValue ( bool ) const {
 		return getConstData ( );
 	}
-
-	virtual bool eval ( ) = 0;
 };
 
 template < class Type >
@@ -109,8 +103,6 @@ public:
 		else
 			throw std::domain_error ( "Value not copy constructible" );
 	}
-
-	virtual bool eval ( ) = 0;
 };
 
 template < class Type >
@@ -132,8 +124,6 @@ public:
 		else
 			throw std::domain_error ( "Value not copy constructible" );
 	}
-
-	virtual bool eval ( ) = 0;
 };
 
 } /* namespace abstraction */
-- 
GitLab