We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 734c8bf commit efc324eCopy full SHA for efc324e
2 files changed
Sandbox/premake5.lua
@@ -2,7 +2,7 @@ project "Sandbox"
2
kind "ConsoleApp"
3
4
language "C++"
5
- cppdialect "C++17"
+ cppdialect "C++20"
6
7
targetdir ("../bin/" .. outputdir .. "/%{prj.name}")
8
objdir("../bin-int/" .. outputdir .. "/%{prj.name}")
Sandbox/src/StringSim/StringSim.cpp
@@ -33,8 +33,8 @@ StringSim::StringSim()
33
// m_Links.push_back(Link { i, i + 1, 0.5f });
34
// }
35
36
- const uint ys = 20;
37
- const uint xs = 40;
+ const uint32_t ys = 20;
+ const uint32_t xs = 40;
38
for (uint32_t x = 0; x < xs; x++) {
39
for (uint32_t y = 0; y < ys; y++) {
40
// if (y > 0) m_Links.push_back(Link { 10 * y + x - 1, 10 * y + x, 0.5f });
0 commit comments