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

CMakeLists.txt: Clang-warnings: removed -Wno-sign-conversion #1817

Merged
merged 3 commits into from
Aug 14, 2020

Conversation

medithe
Copy link
Contributor

@medithe medithe commented Aug 13, 2020

I agree that my contributions are licensed under the {fmt} license, and agree to future changes to the licensing.

@@ -1828,14 +1828,14 @@ class mock_arg_formatter
}

template <typename T>
typename std::enable_if<fmt::detail::is_integral<T>::value, iterator>::type
typename std::enable_if<fmt::detail::is_integral<T>::value && fmt::detail::is_signed<T>::value, iterator>::type
Copy link
Contributor

Choose a reason for hiding this comment

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

Please apply clang-format.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Applied

@vitaut
Copy link
Contributor

vitaut commented Aug 14, 2020

Thanks!

@@ -130,7 +130,7 @@ endif ()

if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
set(PEDANTIC_COMPILE_FLAGS -Wall -Wextra -pedantic -Wconversion
-Wno-sign-conversion -Wdeprecated -Wweak-vtables)
Copy link
Contributor

Choose a reason for hiding this comment

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

Why was this removed?

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.

4 participants