Skip to content

Commit

Permalink
Remove unused lambda capture from oil/vcache/test/CachePrioritizerTes…
Browse files Browse the repository at this point in the history
…t.cpp

Summary:
`-Wunused-lambda-capture` has identified an unused lambda capture. This diff removes it.

If the code compiles, this is safe to land.

Reviewed By: dmm-fb

Differential Revision: D55560299

fbshipit-source-id: af611011abaa081e32cd2be2600f976ed053fedd
  • Loading branch information
r-barnes authored and facebook-github-bot committed Mar 31, 2024
1 parent 1505e7c commit 774c216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openr/kvstore/tests/KvStoreUtilTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class MultipleKvStoreTestFixture : public ::testing::Test {
public:
void
SetUp() override {
auto makeStoreWrapper = [this](std::string nodeId) {
auto makeStoreWrapper = [](std::string nodeId) {
// create KvStoreConfig
thrift::KvStoreConfig kvStoreConfig;
kvStoreConfig.node_name() = nodeId;
Expand Down

0 comments on commit 774c216

Please sign in to comment.