Skip to content

Commit cf66bc8

Browse files
tdhintzzdenop
authored andcommitted
Fix syntax error. (#1355)
1 parent b9b08c7 commit cf66bc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lstm/lstm.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ static inline uint32_t ceil_log2(uint32_t n)
7878
if (n == 0) return UINT_MAX;
7979
if (n == 1) return 0;
8080
uint32_t val = n;
81-
uint32_t int l2 = 0;
81+
uint32_t l2 = 0;
8282
while (val > 1) {
8383
val >>= 1;
8484
l2++;

0 commit comments

Comments
 (0)