Skip to content

Commit 8af2ab3

Browse files
committed
readability-magic-numbers
1 parent 12a5244 commit 8af2ab3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/city.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,11 +215,11 @@ namespace {
215215
uint64_t a, uint64_t b)
216216
-> std::pair<uint64_t, uint64_t> {
217217
a += w;
218-
b = Rotate(b + a + z, 21);
218+
b = Rotate(b + a + z, twentyone);
219219
const uint64_t c = a;
220220
a += x;
221221
a += y;
222-
b += Rotate(a, 44);
222+
b += Rotate(a, fourtyfour);
223223
return std::make_pair(a + z, b + c);
224224
}
225225

0 commit comments

Comments
 (0)