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 の目的
MinGWビルドで出力されているGCCの警告に対処します。
カテゴリ
PR の背景
こんな警告が出ています。
https://dev.azure.com/sakuraeditor/sakura/_build/results?buildId=1955&view=logs&j=e3f261b8-cb91-53d9-e383-fc59c474186f&t=aac127ac-8c3a-5e3b-0b12-66f255f874eb&l=398
inline
は付加したメソッドに可能な限りメソッドをインライン展開する
という属性を付与するキーワードです。キーワードが適切に機能した場合、メソッドのコードは呼出元にインライン展開されて、メソッド呼出のオーバーヘッドがなくなります。
警告が出てる理由を
なんとなく示す
とこんな感じです。virtual IDlgOpenFile::DoModal_GetOpenFileName
.hで宣言。宣言のみのインターフェースメソッド。inline CDlgOpenFile::DoModal_GetOpenFileName
.hで宣言。inline CDlgOpenFile::DoModal_GetOpenFileName
.cppで実装。IDlgOpenFile::DoModal_GetOpenFileName
実際の呼出しはインターフェース経由なのでインライン化されない。警告が出ないようにするには 2. のinlineを外すか、4. をCDlgOpenFileの直接呼出しに変更する必要があります。
PR のメリット
PR のデメリット (トレードオフとかあれば)
仕様・動作説明
テスト内容
ビルド可能であれば確認として十分と思います。
テスト1
手順
PR の影響範囲
関連 issue, PR
参考資料