Olivier Marty 8 vuotta sitten
vanhempi
commit
1cb9e806eb
1 muutettua tiedostoa jossa 4 lisäystä ja 4 poistoa
  1. 4 4
      code/Tips.cpp

+ 4 - 4
code/Tips.cpp

@@ -1,10 +1,10 @@
 // change stack size, in bytes
-#pragma comment(linker, "/STACK:33777216") // no space !
+#pragma comment(linker, "/STACK:33777216") // no spaces !
 
 // regex
 regex reg(R"[a-z]+");
 string str("couCOU");
-bool match = regex_match(str, reg));
+bool match = regex_match(str, reg);
 
 // builtins
 __gcd(x, y);
@@ -13,10 +13,10 @@ __builtin_ffs(int);// 1 + least significant 1-bit
 // __builtin_ffs(1010b) = 2
 // __builtin_ffs(0) = -1
 __builtin_clz(unsigned int) // number of leading 0-bits
-// __builtin_clz(0..010100) = 27
+// __builtin_clz(0..010100b) = 27
 // __builtin_clz(0) is undefined
 __builtin_ctz(unsigned int) // number of trailing 0-bits
-// __builtin_ctz(0..010100) = 2
+// __builtin_ctz(0..010100b) = 2
 // __builtin_ctz(0) is undefined
 __builtin_popcount(int) // number of 1-bits
 // __builtin_popcount(0110b) = 2