Why does compiler inlining produce slower code than manual inlining?
Short Answer: Your asd array is declared as this: int *asd=new int[16]; Therefore, use int as the return type rather than bool. Alternatively, change the array type to bool. In any case, make the return type of the test function match the type of the array. Skip to bottom for more details. Long Answer: In … Read more