summaryrefslogtreecommitdiffstats
path: root/eval
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2021-04-14 14:27:52 +0200
committerTor Egge <Tor.Egge@online.no>2021-04-14 14:27:52 +0200
commit81705e0cda371eaf87b169d6e81291f22f04091b (patch)
treee6f85b756c3861562a1d650f78f66bc19a39f3da /eval
parent8ed6273fd8458eb36da7d75413437e6b63ae5aac (diff)
Remove unused capture.
Diffstat (limited to 'eval')
-rw-r--r--eval/src/tests/tensor/binary_format/binary_format_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval/src/tests/tensor/binary_format/binary_format_test.cpp b/eval/src/tests/tensor/binary_format/binary_format_test.cpp
index 671765d4050..d0e05d303a2 100644
--- a/eval/src/tests/tensor/binary_format/binary_format_test.cpp
+++ b/eval/src/tests/tensor/binary_format/binary_format_test.cpp
@@ -128,7 +128,7 @@ TEST(TensorBinaryFormatTest, tensor_binary_format_test_spec) {
path.append("src/apps/make_tensor_binary_format_test_spec/test_spec.json");
MappedFileInput file(path);
EXPECT_TRUE(file.valid());
- auto handle_test = [this](Slime &slime)
+ auto handle_test = [](Slime &slime)
{
test_binary_format_spec(slime.get());
};