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

fix warnings #9

Closed
miguelmartin75 opened this issue Sep 24, 2014 · 3 comments
Closed

fix warnings #9

miguelmartin75 opened this issue Sep 24, 2014 · 3 comments

Comments

@miguelmartin75
Copy link
Contributor

I get the following warnings when using lest.

lest.hpp:390:68: warning:
      equality comparison result unused [-Wunused-comparison]
  ...test( int ) -> decltype( std::declval<U>().begin() == std::declval<U>().end(), std...
                              ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
lest.hpp:415:47: note: in
      instantiation of template class 'lest::is_container<std::__1::basic_string<char> >'
      requested here
using ForContainer = typename std::enable_if< is_container<T>::value, R>::type;
                                              ^
lest.hpp:465:37: note: in
      instantiation of template type alias 'ForContainer' requested here
auto to_string( C const & cont ) -> ForContainer<C, std::string>
                                    ^
lest.hpp:486:12: note: while
      substituting deduced template arguments into function template 'to_string' [with C =
      std::__1::basic_string<char>]
    return to_string( result );
           ^
lest.hpp:390:68: warning:
      equality comparison result unused [-Wunused-comparison]
  ...test( int ) -> decltype( std::declval<U>().begin() == std::declval<U>().end(), std...
                              ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~

I'm using Apple clang on OS X 10.9.5:

Apple LLVM version 6.0 (clang-600.0.51) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin13.4.0
Thread model: posix
@martinmoene
Copy link
Owner

Hi Miguel,

After adding # pragma clang diagnostic ignored "-Wunused-comparison" to lest.hpp I discovered that the Makefile used by Travis CI didn't build test_lest anymore. After fixing that it appeared that clang trips over std::underlying_type<>, whereas on Windows, g++ (GCC) 4.8.1 and Visual C++ 12 (Visual Studio 2013) succeed.

As I don't have access to clang it would be very helpful if you could tell me the result for your environment.

Thanks in advance,
Martin

Edit 26-Sep-2014: Moved to issue #10 .

@miguelmartin75
Copy link
Contributor Author

Your fixes seems to have removed the warnings. Thanks :)

@martinmoene
Copy link
Owner

Thanks for telling!

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

No branches or pull requests

2 participants