1
Đây có phải là một lỗi trong std :: gcd?
Tôi đã bắt gặp hành vi này std::gcdmà tôi thấy bất ngờ: #include <iostream> #include <numeric> int main() { int a = -120; unsigned b = 10; //both a and b are representable in type C using C = std::common_type<decltype(a), decltype(b)>::type; C ca = std::abs(a); C cb = b; std::cout …