src: drop 'virtual' from functions marked 'final' or 'override'
Change-Id: Ieb6df864ab82f77b2bee9e83aa0bfa2005715950
Refs: #3857
diff --git a/src/security/transform/base64-decode.hpp b/src/security/transform/base64-decode.hpp
index cfd5876..0ef0a46 100644
--- a/src/security/transform/base64-decode.hpp
+++ b/src/security/transform/base64-decode.hpp
@@ -49,7 +49,7 @@
/**
* @brief Read partial transformation results into output buffer and write them into next module.
*/
- virtual void
+ void
preTransform() final;
/**
@@ -57,7 +57,7 @@
*
* @return number of bytes that have been accepted by the converter
*/
- virtual size_t
+ size_t
convert(const uint8_t* buf, size_t size) final;
/**
@@ -65,7 +65,7 @@
*
* This method with read all decoding results from the converter and write them into next module.
*/
- virtual void
+ void
finalize() final;
/**