diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-03 20:28:33 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-03 20:28:33 +0200 |
commit | 2bbf13e72c571c5063576a13e123f0ae3ad78f9f (patch) | |
tree | 12d322d4bcc28be19e4c55f2e30b22af5612b75e /wall-mesh.cpp | |
parent | 0e82239a9cf4be27fddd164bf654c6163eb51373 (diff) |
fix msvc
Diffstat (limited to 'wall-mesh.cpp')
-rw-r--r-- | wall-mesh.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wall-mesh.cpp b/wall-mesh.cpp index 2dddf3a1..843f7073 100644 --- a/wall-mesh.cpp +++ b/wall-mesh.cpp @@ -75,6 +75,6 @@ decltype(wall_mesh::_index_data) wall_mesh::make_index_array() return array; } -const auto wall_mesh::_index_data = wall_mesh::make_index_array(); +const decltype(wall_mesh::_index_data) wall_mesh::_index_data = wall_mesh::make_index_array(); } // namespace Magnum::Examples |