Skip to content
New issue

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

NOMINMAXの定義をifndefで括る #904

Merged

Conversation

berryzplus
Copy link
Contributor

@berryzplus berryzplus commented May 12, 2019

テストコードの#define NOMINMAXが警告を吐いています。
CMake対応で -G=Ninja の調整をしていて気になったのでPR出します。

C:\projects\sakura\tests\unittests\test-int2dec.cpp:4: warning: "NOMINMAX" redefined
 #define NOMINMAX
 
In file included from C:/msys64/mingw64/include/c++/8.2.0/x86_64-w64-mingw32/bits/c++config.h:508,
                 from C:/msys64/mingw64/include/c++/8.2.0/limits:42,
                 from C:/projects/sakura/tests/googletest/googletest/include/gtest/gtest.h:56,
                 from C:\projects\sakura\tests\unittests\test-int2dec.cpp:1:
C:/msys64/mingw64/include/c++/8.2.0/x86_64-w64-mingw32/bits/os_defines.h:45: note: this is the location of the previous definition
 #define NOMINMAX 1
 
[ 76%] Building CXX object unittests/CMakeFiles/tests1.dir/test-is_mailaddress.cpp.obj

本件、#592 単体テストコードで NOMINMAX を定義しているのを削除する で話題になってる件です。

「削除しよう。」は違う気がするので、ifndefで括って二重定義を回避します。

closes #592;

と書いておけばマージと同時にissueも閉じられるのかな?

@k-takata
Copy link
Member

closes 592;

# が必要です。 closes #592

@berryzplus
Copy link
Contributor Author

berryzplus commented May 12, 2019

closes 592;

# が必要です。 closes #592

あざっす。直しときました 😄

@berryzplus
Copy link
Contributor Author

またビルドがコケておる・・・と思ったらHTML Helpでした。

とりあえずRe-Runかけました。

Copy link
Contributor

@beru beru left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

問題無いかと思います。

が、複数のcppファイルで個別に書いているのはちょっと気になります。
今後テストのcppファイルが増えていった時にまた個々のcppファイル内に同じ記述を書くというのもなんだか…。

@berryzplus
Copy link
Contributor Author

レビューありがとうございます。

が、複数のcppファイルで個別に書いているのはちょっと気になります。
今後テストのcppファイルが増えていった時にまた個々のcppファイル内に同じ記述を書くというのもなんだか…。

いまは、気の向いたとき気軽にテストコードを書けるようにできるだけ縛りはつけない感じにしときたいなぁ、と思っています。とりあえず今「警告が気になる」という問題は解決できたので、いつか「似たような定型句が数百か所にある」が問題になったときに残りを考えたらいいのかな、と思っています。

@berryzplus berryzplus merged commit 1fb09e9 into sakura-editor:master May 14, 2019
@berryzplus berryzplus deleted the feature/add_ifndef_NOMINMAX branch May 14, 2019 13:34
@m-tmatma m-tmatma added this to the v2.4.0 milestone May 18, 2019
HoppingTappy pushed a commit to HoppingTappy/sakura that referenced this pull request Jun 11, 2019
…ef_NOMINMAX

NOMINMAXの定義をifndefで括る
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

単体テストコードで NOMINMAX を定義しているのを削除する
4 participants