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.
PR の目的
不要になった
warning(disable)
のpragma定義を除去します。カテゴリ
PR の背景
VC++ では
#pragma warning(disable: WARNING_NUMBER)
と書くことによって、特定のコンパイラ警告を無効にすることができます。
コンパイラ警告を無効にする動機としてよくあるのは、以下のケースです。
サクラエディタは、上記のどちらにも当てはまるプログラムです。
歴史的な理由で
warning (disable)
の記述がいくつか残っています。しかし、これまでに行ってきた様々な対応により、これらの警告抑制は不要になっています。
このPRでは、不要となった
warning (disable)
を除去して警告の抑制を解除します。PR のメリット
/wd4996
ってなんだっけ?」と悩まなくてよくなります。PR のデメリット (トレードオフとかあれば)
PR の影響範囲
関連チケット
#1044 プロジェクトのビルドにWindows10 SDKを使う
参考資料