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
directx12_samples/Chapter10/PMDActor.h
Line 102 in 6947b40
Line 93 in 6947b40
一時オブジェクトが渡されることを想定している関数のシグネチャが参照渡しになっています。 VS2017.15.5以降、デフォルトで有効になっている/permissive-オプションが有効な時、このコードは通りません。 const参照渡しに書き換えるべきです。
/permissive-
参考 https://docs.microsoft.com/ja-jp/cpp/build/reference/permissive-standards-conformance?view=vs-2019
The text was updated successfully, but these errors were encountered:
No branches or pull requests
directx12_samples/Chapter10/PMDActor.h
Line 102 in 6947b40
directx12_samples/Chapter10/PMDActor.h
Line 93 in 6947b40
一時オブジェクトが渡されることを想定している関数のシグネチャが参照渡しになっています。 VS2017.15.5以降、デフォルトで有効になっている
/permissive-
オプションが有効な時、このコードは通りません。const参照渡しに書き換えるべきです。
参考
https://docs.microsoft.com/ja-jp/cpp/build/reference/permissive-standards-conformance?view=vs-2019
The text was updated successfully, but these errors were encountered: