From 9a6aeb3f3fa1c5442ef99118b3b93ae47b2c43c4 Mon Sep 17 00:00:00 2001 From: MZuenni Date: Tue, 14 Feb 2023 16:53:47 +0100 Subject: moved even more --- other/bitOps.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'other/bitOps.cpp') diff --git a/other/bitOps.cpp b/other/bitOps.cpp index d1ace9a..98fc994 100644 --- a/other/bitOps.cpp +++ b/other/bitOps.cpp @@ -14,5 +14,5 @@ int numberOfSetBits(int i) { // (z.B. 00111 => 01011 => 01101 => ...) ll nextPerm(ll v) { ll t = v | (v - 1); - return (t + 1) | (((~t & -~t) - 1) >> (__builtin_ctzll(v) + 1)); + return (t+1) | (((~t & -~t) - 1) >> (__builtin_ctzll(v) + 1)); } -- cgit v1.2.3