Skip to content

Commit e5ebb9e

Browse files
authored
Fixing linux build failure with some gcc compilers. (#431)
1 parent 23f21e8 commit e5ebb9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uitools/cpp/Esri/ArcGISRuntime/Toolkit/TimeSliderController.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ namespace
5858
listModel->cbegin(),
5959
listModel->cend(),
6060
T{},
61-
[f{std::move(f)}](const T& val, Layer* layer)
61+
[f = std::move(f)](const T& val, Layer* layer)
6262
{
6363
if (!layer || layer->loadStatus() != LoadStatus::Loaded)
6464
return val;

0 commit comments

Comments
 (0)