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:
parent
1c9e3f220c
commit
5e8df616d9
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue