Created attachment 90937 [details] build error log *Environment: - Gentoo kernel 3.17.8-gentoo-r1 - Clang 3.5.0-r100 - Qt5 dev branch from git source (not portage tree) *How to reproduce: - Build konsole with qt5 dev branch ( with ./kdesrc-build --refresh-build konsole) *Behavior to expected: - Build succeeded *Behavior in fact: - Build failed with error " ProcessInfo.cpp:448:37: error: call to member function 'readLine' is ambiguous " *Route cause: - As QtTextStream::readLine() has been overloaded in Qt5 dev branch[1] readLine(0) is detected as ambiguous. *Suggestion to fix: - call readLine() without no arg to be set maxlen=0 as default. (see attached file) [1] https://codereview.qt-project.org/#/c/98606/
Created attachment 90938 [details] patch
> *Route cause: > - As QtTextStream::readLine() has been overloaded in Qt5 dev branch[1] > readLine(0) is detected as ambiguous. > [1] https://codereview.qt-project.org/#/c/98606/ sorry for typo. *Root cause: - As QTextStream::readLine() has been overloaded in Qt5 dev branch[1] readLine(0) is detected as ambiguous.
Git commit be2b2b4b2e7d6375c852262fb1798f272697a240 by Kurt Hindenburg. Committed on 07/02/2015 at 19:35. Pushed by hindenburg into branch 'master'. call readLine() without arg to be set maxlen=0 as default Qt dev overloads readline() call to member function 'readLine' is ambiguous Thanks to Takahiro Hashimoto for report and fix M +1 -1 src/ProcessInfo.cpp http://commits.kde.org/konsole/be2b2b4b2e7d6375c852262fb1798f272697a240