[Akonadi] [Bug 343476] New: git origin/1.13 searchtest.cpp fails to build with clang

RJVB rjvbertin at gmail.com
Wed Jan 28 19:49:10 GMT 2015


https://bugs.kde.org/show_bug.cgi?id=343476

            Bug ID: 343476
           Summary: git origin/1.13 searchtest.cpp fails to build with
                    clang
           Product: Akonadi
           Version: GIT (master)
          Platform: Compiled Sources
                OS: other
            Status: UNCONFIRMED
          Severity: normal
          Priority: NOR
         Component: server
          Assignee: kdepim-bugs at kde.org
          Reporter: rjvbertin at gmail.com

clang 3.5 fails to build searchtest.cpp from the 1.13 branch head:

akonadi-1.13.1/server/tests/unittest/searchtest.cpp:124:30: error: no matching
conversion for functional-style cast from 'void' to 'QVector<qint64>'
                          << QVector<qint64>({ col4.id(), col5.id(), col7.id()
});
                            
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/local/include/qt4/QtCore/qvector.h:121:14: note: candidate constructor not
viable: cannot convert initializer list argument to 'int'
    explicit QVector(int size);
             ^
/opt/local/include/qt4/QtCore/qvector.h:123:12: note: candidate constructor not
viable: cannot convert initializer list argument to 'const QVector<long long>'
    inline QVector(const QVector<T> &v) : d(v.d) { d->ref.ref(); if
(!d->sharable) detach_helper(); }
           ^
/opt/local/include/qt4/QtCore/qvector.h:120:12: note: candidate constructor not
viable: requires 0 arguments, but 1 was provided
    inline QVector() : d(&QVectorData::shared_null) { d->ref.ref(); }
           ^
/opt/local/include/qt4/QtCore/qvector.h:122:5: note: candidate constructor not
viable: requires 2 arguments, but 1 was provided
    QVector(int size, const T &t);
    ^


Reproducible: Always

Steps to Reproduce:
1. checkout akonadi git c733429f
2. cmake -DCMAKE_CXX_COMPILER=clang (etc)
3. make

Actual Results:  
akonadi-1.13.1/server/tests/unittest/searchtest.cpp:124:30: error: no matching
conversion for functional-style cast from 'void' to 'QVector<qint64>'
                          << QVector<qint64>({ col4.id(), col5.id(), col7.id()
});
                            
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/local/include/qt4/QtCore/qvector.h:121:14: note: candidate constructor not
viable: cannot convert initializer list argument to 'int'
    explicit QVector(int size);
             ^
/opt/local/include/qt4/QtCore/qvector.h:123:12: note: candidate constructor not
viable: cannot convert initializer list argument to 'const QVector<long long>'
    inline QVector(const QVector<T> &v) : d(v.d) { d->ref.ref(); if
(!d->sharable) detach_helper(); }
           ^
/opt/local/include/qt4/QtCore/qvector.h:120:12: note: candidate constructor not
viable: requires 0 arguments, but 1 was provided
    inline QVector() : d(&QVectorData::shared_null) { d->ref.ref(); }
           ^
/opt/local/include/qt4/QtCore/qvector.h:122:5: note: candidate constructor not
viable: requires 2 arguments, but 1 was provided
    QVector(int size, const T &t);
    ^

plus similar errors in the same file

Expected Results:  
no errors

This error exists only in searchtest.cpp; tested both on OS X 10.9 and KUbuntu
14.04 with clang 3.5 .

-- 
You are receiving this mail because:
You are the assignee for the bug.



More information about the Kdepim-bugs mailing list