Commit 84c10837 authored by Paul's avatar Paul
Browse files

Fix tidy warning

parent 125e6ea2
...@@ -27,7 +27,7 @@ struct sqlite_impl ...@@ -27,7 +27,7 @@ struct sqlite_impl
auto callback = [](void* obj, auto... xs) -> int { auto callback = [](void* obj, auto... xs) -> int {
try try
{ {
auto g = static_cast<const F*>(obj); const auto* g = static_cast<const F*>(obj);
(*g)(xs...); (*g)(xs...);
return 0; return 0;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment