Ticket #38328: diff-fix-qt-boost-bug.patch

File diff-fix-qt-boost-bug.patch, 536 bytes (added by andre.dos.anjos@…, 11 years ago)
  • include/bob/visioner/util/util.h

    diff --git include/bob/visioner/util/util.h include/bob/visioner/util/util.h
    index 7c8710e..d050ca8 100644
     
    2929#include <algorithm>
    3030#include <vector>
    3131#include <stdint.h>
     32
    3233#include <boost/algorithm/string/classification.hpp>
    3334#include <boost/algorithm/string/split.hpp>
    3435
     36// See bug: https://bugreports.qt-project.org/browse/QTBUG-22829
     37#ifndef Q_MOC_RUN
    3538#include <boost/lexical_cast.hpp>
     39#endif
    3640
    3741namespace bob { namespace visioner {
    3842