Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Qt Creator and other tools
  4. Qtcreator gdb boost rtti
Forum Updated to NodeBB v4.3 + New Features

Qtcreator gdb boost rtti

Scheduled Pinned Locked Moved Qt Creator and other tools
1 Posts 1 Posters 1.1k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    stima_ua
    wrote on last edited by
    #1

    I've strange runtime warning
    @
    RTTI symbol not found for class 'boost::signals2::signal<void (bool, std::string const&), boost::signals2::optional_last_value<void>, int, std::less<int>, boost::function<void (bool, std::string const&)>, boost::function<void (boost::signals2::connection const&, bool, std::string const&)>, boost::signals2::mutex>'
    @

    that was called when debugging in this part of my code:

    @
    typedef boost::signals2::signal<void(bool, const std::string&)> signal_t;

    void send(const std::string& buff, const signal_t& signal)
    {
    auto async_send = boost::bind(&priv::async_send_handle, shared_from_this(), placeholders::error, boost::ref(signal));
    auto timeout = boost::bind(&priv::check_deadline, shared_from_this(), placeholders::error, boost::ref(signal));

    boost::asio::async_write(sd, buffer(buff), async_send);
    
    _deadline.expires_from_now(boost::posix_time::milliseconds(connect_timeout));
    _deadline.async_wait(timeout);
    

    }
    @

    How should I handle this? Thanks for any advice.

    Info: boost v1.54, qtcreator v2.8.1 (non qt project), g++ v4.8.1, gdb v7.5.91.20130417-cvs-ubuntu

    p.s. I run gdb + executable (gdb a.out) without qt and I have not this warnigns.

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved