JDimproved / JDim

2ch browser for linux
https://jdimproved.github.io/JDim/
GNU General Public License v2.0
46 stars 11 forks source link

Fix compiler warnings for -Wold-style-cast part1,2,3 #1386

Closed ma8ma closed 5 months ago

ma8ma commented 5 months ago

Fix compiler warning for -Wold-style-cast part1

C言語スタイルのキャストを使用しているとclangに指摘されたためC++スタイルのキャストstatic_cast<...>(value)に変更したりキャストを外したりしてコンパイラー警告を修正します。

clang-17のレポート (file pathを一部省略)

src/sound/playsound.cpp:171:34: warning: use of old-style cast [-Wold-style-cast]
src/sound/playsound.cpp:217:40: warning: use of old-style cast [-Wold-style-cast]
src/dbimg/img.cpp:638:33: warning: use of old-style cast [-Wold-style-cast]
src/dbimg/img.cpp:694:22: warning: use of old-style cast [-Wold-style-cast]
src/dbimg/img.cpp:695:22: warning: use of old-style cast [-Wold-style-cast]
src/dbimg/img.cpp:698:23: warning: use of old-style cast [-Wold-style-cast]
src/dbimg/img.cpp:699:24: warning: use of old-style cast [-Wold-style-cast]
src/history/viewhistory.cpp:278:48: warning: use of old-style cast [-Wold-style-cast]
src/config/configitems.cpp:434:74: warning: use of old-style cast [-Wold-style-cast]
src/config/configitems.cpp:434:111: warning: use of old-style cast [-Wold-style-cast]
src/config/configitems.cpp:434:124: warning: use of old-style cast [-Wold-style-cast]
src/config/configitems.cpp:437:68: warning: use of old-style cast [-Wold-style-cast]
src/config/configitems.cpp:437:102: warning: use of old-style cast [-Wold-style-cast]
src/config/configitems.cpp:437:115: warning: use of old-style cast [-Wold-style-cast]
src/control/control.cpp:197:14: warning: use of old-style cast [-Wold-style-cast]
src/control/control.cpp:198:14: warning: use of old-style cast [-Wold-style-cast]
src/control/control.cpp:218:19: warning: use of old-style cast [-Wold-style-cast]
src/control/control.cpp:219:19: warning: use of old-style cast [-Wold-style-cast]
src/control/controlutil.cpp:260:41: warning: use of old-style cast [-Wold-style-cast]
src/message/messageviewbase.cpp:996:9: warning: use of old-style cast [-Wold-style-cast]

Fix compiler warning for -Wold-style-cast part2

C言語スタイルのキャストを使用しているとclangに指摘されたためC++スタイルのキャストstatic_cast<...>(value)dynamic_cast<...>(value)に変更してコンパイラー警告を修正します。

clang-17のレポート (file pathを一部省略)

src/board/boardadmin.cpp:429:28: warning: use of old-style cast [-Wold-style-cast]
src/board/boardviewbase.cpp:2146:19: warning: use of old-style cast [-Wold-style-cast]
src/board/boardviewbase.cpp:2147:19: warning: use of old-style cast [-Wold-style-cast]
src/board/boardviewnext.cpp:129:22: warning: use of old-style cast [-Wold-style-cast]
src/image/imageadmin.cpp:987:36: warning: use of old-style cast [-Wold-style-cast]
src/image/imagearea.cpp:76:26: warning: use of old-style cast [-Wold-style-cast]
src/image/imagearea.cpp:77:26: warning: use of old-style cast [-Wold-style-cast]
src/image/imagearea.cpp:83:24: warning: use of old-style cast [-Wold-style-cast]
src/image/imagearea.cpp:84:25: warning: use of old-style cast [-Wold-style-cast]
src/image/imagearea.cpp:91:20: warning: use of old-style cast [-Wold-style-cast]
src/image/imagearea.cpp:92:21: warning: use of old-style cast [-Wold-style-cast]
src/image/imageareaicon.cpp:83:26: warning: use of old-style cast [-Wold-style-cast]
src/image/imageareaicon.cpp:84:26: warning: use of old-style cast [-Wold-style-cast]
src/image/imageareaicon.cpp:86:20: warning: use of old-style cast [-Wold-style-cast]
src/image/imageareaicon.cpp:87:21: warning: use of old-style cast [-Wold-style-cast]
src/jdlib/imgloader.cpp:267:31: warning: use of old-style cast [-Wold-style-cast]
src/jdlib/miscutil.cpp:1283:23: warning: use of old-style cast [-Wold-style-cast]
src/jdlib/miscutil.cpp:1283:23: warning: use of old-style cast [-Wold-style-cast]
src/message/logmanager.cpp:208:30: warning: use of old-style cast [-Wold-style-cast]
src/message/logmanager.cpp:208:66: warning: use of old-style cast [-Wold-style-cast]

Fix compiler warning for -Wold-style-cast part3

C言語スタイルのキャストを使用しているとclangに指摘されたためC++スタイルのキャストstatic_cast<T>(value)reinterpret_cast<T>(value)に変更してコンパイラー警告を修正します。

clang-17のレポート (file pathを一部省略)

src/bbslist/bbslistviewbase.cpp:1209:53: warning: use of old-style cast [-Wold-style-cast]
src/bbslist/bbslistviewbase.cpp:1209:68: warning: use of old-style cast [-Wold-style-cast]
src/bbslist/bbslistviewbase.cpp:1243:13: warning: use of old-style cast [-Wold-style-cast]
src/bbslist/bbslistviewbase.cpp:1244:13: warning: use of old-style cast [-Wold-style-cast]
src/bbslist/bbslistviewbase.cpp:2502:19: warning: use of old-style cast [-Wold-style-cast]
src/bbslist/bbslistviewbase.cpp:684:95: warning: use of old-style cast [-Wold-style-cast]
src/image/imageareapopup.cpp:55:28: warning: use of old-style cast [-Wold-style-cast]
src/image/imageareapopup.cpp:56:28: warning: use of old-style cast [-Wold-style-cast]
src/image/imageareapopup.cpp:60:20: warning: use of old-style cast [-Wold-style-cast]
src/image/imageareapopup.cpp:61:21: warning: use of old-style cast [-Wold-style-cast]
src/jdlib/jdiconv.cpp:124:17: warning: use of old-style cast [-Wold-style-cast]
src/jdlib/jdiconv.cpp:55:17: warning: use of old-style cast [-Wold-style-cast]
src/jdlib/jdiconv.cpp:66:17: warning: use of old-style cast [-Wold-style-cast]
src/jdlib/jdiconv.cpp:76:17: warning: use of old-style cast [-Wold-style-cast]
src/jdlib/jdiconv.cpp:92:17: warning: use of old-style cast [-Wold-style-cast]
src/jdlib/misctrip.cpp:134:51: warning: use of old-style cast [-Wold-style-cast]
src/jdlib/misctrip.cpp:212:13: warning: use of old-style cast [-Wold-style-cast]
src/jdlib/misctrip.cpp:217:18: warning: use of old-style cast [-Wold-style-cast]
src/jdlib/misctrip.cpp:222:18: warning: use of old-style cast [-Wold-style-cast]
src/skeleton/undobuffer.cpp:127:9: warning: use of old-style cast [-Wold-style-cast]