Skip to content

Commit 0b2050d

Browse files
committed
test-batchlstm: Add missing include file
Fix an compilation error: test-batchlstm.cc: In function 'int main(int, char**)': test-batchlstm.cc:111:27: error: 'unlink' was not declared in this scope unlink("__test0__.clstm"); ^ Signed-off-by: Stefan Weil <[email protected]>
1 parent a39b215 commit 0b2050d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test-batchlstm.cc

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include <iostream>
66
#include <memory>
77
#include <string>
8+
#include <unistd.h> // unlink
89
#include <vector>
910
#include "clstm.h"
1011
#include "extras.h"

0 commit comments

Comments
 (0)