Fix warnings about a template id in a constructor

It's redundant, and GCC-14 warns that this isn't allowed in C++20.

(cherry picked from commit d5b726df6e)
This commit is contained in:
Steve Cotton 2024-06-14 14:42:26 +02:00 committed by Steve Cotton
parent 1c9e3f220c
commit 5e8df616d9

View file

@ -58,7 +58,7 @@ public:
* be converted to the type T.
* @param value The default value for the object.
*/
explicit typed_formula<T>(const std::string& str, const T value = T());
explicit typed_formula(const std::string& str, const T value = T());
/**
* Returns the value, can only be used if the data is no formula.