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
这里是原版英文中的第二节的文字: the type specifier is const auto. And here,
const auto& rx = x;
这里是翻译后的文字 类型说明符是const auto。另一个:
const auto & rx=cx;
可以看到原版是const auto& rx = x;,翻译后是const auto & rx=cx, 这里抄写错误,建议修改
const auto & rx=cx
The text was updated successfully, but these errors were encountered:
[item2]auto: fix CnTransGroup#157, typo:cx
99f05e1
const auto& rx = cx; ==> const auto& rx = x;
a8199af
No branches or pull requests
这里是原版英文中的第二节的文字:
the type specifier is const auto. And here,
这里是翻译后的文字
类型说明符是const auto。另一个:
可以看到原版是
const auto& rx = x;
,翻译后是const auto & rx=cx
,这里抄写错误,建议修改
The text was updated successfully, but these errors were encountered: