Skip to content

Commit 409b0e9

Browse files
authored
Fixed template-id not allowed error (ydb-platform#150)
1 parent 55fd50d commit 409b0e9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/library/digest/argonish/internal/blake2b/blake2b.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace NArgonish {
1515
template <NArgonish::EInstructionSet instructionSet>
1616
class TBlake2B final: public IBlake2Base {
1717
public:
18-
virtual ~TBlake2B<instructionSet>() {
18+
virtual ~TBlake2B() {
1919
SecureZeroMemory_((void*)&State_, sizeof(State_));
2020
SecureZeroMemory_((void*)&Param_, sizeof(Param_));
2121
}

src/library/getopt/small/last_getopt_opts.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
#include <src/util/generic/algorithm.h>
1010
#include <src/util/stream/format.h>
1111

12+
#include <sstream>
13+
1214
#include <stdlib.h>
1315

1416
namespace NLastGetoptPrivate {

0 commit comments

Comments
 (0)