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

Unbreak build against Boost 1.67 #6230

Merged
merged 1 commit into from
Apr 16, 2018
Merged

Unbreak build against Boost 1.67 #6230

merged 1 commit into from
Apr 16, 2018

Commits on Apr 15, 2018

  1. Explicitly use long with boost::posix_time

    In file included from lib/base/base_unity.cpp:61:
    lib/base/timer.cpp:295:31: error: no matching conversion for functional-style cast from 'double' to 'boost::posix_time::milliseconds' (aka 'subsecond_duration<boost::posix_time::time_duration, 1000>')
                            l_TimerCV.timed_wait(lock, boost::posix_time::milliseconds(wait * 1000));
                                                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    In file included from lib/remote/remote_unity.cpp:19:
    lib/remote/eventqueue.cpp:111:30: error: no matching conversion for functional-style cast from 'double' to 'boost::posix_time::milliseconds' (aka 'subsecond_duration<boost::posix_time::time_duration, 1000>')
                    if (!m_CV.timed_wait(lock, boost::posix_time::milliseconds(timeout * 1000)))
                                               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    In file included from lib/checker/checker_unity.cpp:1:
    lib/checker/checkercomponent.cpp:128:26: error: no matching conversion for functional-style cast from 'double' to 'boost::posix_time::milliseconds' (aka 'subsecond_duration<boost::posix_time::time_duration, 1000>')
                            m_CV.timed_wait(lock, boost::posix_time::milliseconds(wait * 1000));
                                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    /usr/local/include/boost/date_time/time_duration.hpp:270:30: note: candidate constructor (the implicit copy constructor) not viable: no known conversion from 'double' to 'const boost::date_time::subsecond_duration<boost::posix_time::time_duration, 1000>' for 1st argument
      class BOOST_SYMBOL_VISIBLE subsecond_duration : public base_duration
                                 ^
    /usr/local/include/boost/date_time/time_duration.hpp:270:30: note: candidate constructor (the implicit move constructor) not viable: no known conversion from 'double' to 'boost::date_time::subsecond_duration<boost::posix_time::time_duration, 1000>' for 1st argument
    /usr/local/include/boost/date_time/time_duration.hpp:286:59: note: candidate template ignored: disabled by 'enable_if' [with T = double]
                                    typename boost::enable_if<boost::is_integral<T>, void>::type* = 0) :
                                                              ^
    jbeich committed Apr 15, 2018
    Configuration menu
    Copy the full SHA
    106be29 View commit details
    Browse the repository at this point in the history