summaryrefslogtreecommitdiff
path: root/filters.h
diff options
context:
space:
mode:
authorThomas-Barbier-1A <thomas.barbier@amadeus.com>2020-10-01 02:13:32 +0200
committerGitHub <noreply@github.com>2020-09-30 20:13:32 -0400
commit4357824155fcf9380f6cfcc012b4c721f45dc928 (patch)
tree5ae289944cd87114749e9509a3fd6a2136bec597 /filters.h
parent38e6763249c7aab34968167301272ba01e48c1af (diff)
downloadcryptopp-git-4357824155fcf9380f6cfcc012b4c721f45dc928.tar.gz
Fix GCC11 C++20 compile error (PR #970)
``` filters.h:1369:49: error: expected ‘)’ before ‘*’ token SourceTemplate<T>(BufferedTransformation *attachment) ````
Diffstat (limited to 'filters.h')
-rw-r--r--filters.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/filters.h b/filters.h
index 9aa0be93..a334bd76 100644
--- a/filters.h
+++ b/filters.h
@@ -1432,7 +1432,7 @@ public:
/// \brief Construct a SourceTemplate
/// \param attachment an attached transformation
- SourceTemplate<T>(BufferedTransformation *attachment)
+ SourceTemplate(BufferedTransformation *attachment)
: Source(attachment) {}
void IsolatedInitialize(const NameValuePairs &parameters)
{m_store.IsolatedInitialize(parameters);}