Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
テストコードで利用していた
_swprintf_p
の利用をやめます。#591 (comment)
#559 (comment)
_swprintf_p
関数は、引数で与えたパラメータの順番を書式文字列で制御することができます。この関数をあえて使ったのは国際化対応に活用したい動機があったためです。
_swprintf_p
swprintf_s
置き換え対象コードはテストコードなので、本筋の対応には一切影響を与えません。
本筋の国際化対応には別の方法(FormatMessage関数)が使えそうなので、テストコードの試みは単純にひっこめます。
masterブランチはまだMinGWのテストが有効になってないので、これのappveyor結果を見ても効果の有無は確認できませんが、一応ローカルでビルド確認済みです。
#591をフェッチしてビルドしたときに発生したエラーがこれです。
このPRのコミット f658102 をcherry pickした状態でビルド正常、テストOKを確認しています。