We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
auto x1 = 27; //类型是int,值是27 auto x2(27); //同上 auto x3 = { 27 }; //类型是std::initializer_list, //值是{ 27 } auto x4{ 27 }; //同上
当gcc编译器大于5.0,auto x4{ 27 }; x4的类型是int 而不是initialized_list
The text was updated successfully, but these errors were encountered:
Fix CnTransGroup#107 & CnTransGroup#152
51bf3a1
365b38d
75b0671
No branches or pull requests
auto x1 = 27; //类型是int,值是27
auto x2(27); //同上
auto x3 = { 27 }; //类型是std::initializer_list,
//值是{ 27 }
auto x4{ 27 }; //同上
当gcc编译器大于5.0,auto x4{ 27 }; x4的类型是int 而不是initialized_list
The text was updated successfully, but these errors were encountered: