From 0d40ecd40b8833cd1519eee1f65e20c08a62cd9b Mon Sep 17 00:00:00 2001 From: levlam Date: Thu, 13 Sep 2018 23:07:30 +0300 Subject: [PATCH] Make function static. GitOrigin-RevId: 6adf0dfbc3da005e9f6cd77a26621230a5fc37cd --- tdactor/test/actors_simple.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdactor/test/actors_simple.cpp b/tdactor/test/actors_simple.cpp index cfef82ac..7e37f57c 100644 --- a/tdactor/test/actors_simple.cpp +++ b/tdactor/test/actors_simple.cpp @@ -35,7 +35,7 @@ static char buf2[BUF_SIZE]; static StringBuilder sb(MutableSlice(buf, BUF_SIZE - 1)); static StringBuilder sb2(MutableSlice(buf2, BUF_SIZE - 1)); -auto create_queue() { +static auto create_queue() { auto res = std::make_shared>(); res->init(); return res;