Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Konsole
Commits
52a9df57
Commit
52a9df57
authored
Feb 18, 2021
by
Kurt Hindenburg
Browse files
Comment out auxiliar functions to test Screen
for_each_n() doesn't compile w/ gcc 8.3.x
BUG: 432639
parent
cf8316bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Screen.cpp
View file @
52a9df57
...
...
@@ -11,7 +11,6 @@
// Qt
#include <QSet>
#include <QTextStream>
#include <QDebug>
// Konsole decoders
#include <PlainTextDecoder.h>
...
...
@@ -387,6 +386,10 @@ void Screen::setReflowLines(bool enable)
_enableReflowLines
=
enable
;
}
/* Note that if you use these debugging functions, it will
fail to compile on gcc 8.3.1 as of Feb 2021 due to for_each_n().
See BKO: 432639
// Debugging auxiliar functions to show what is written in screen or history
void toDebug(const Character *s, int count, bool wrapped = false)
{
...
...
@@ -402,7 +405,7 @@ void toDebug(const QVector<Character> &s, bool wrapped = false)
{
toDebug(s.data(), s.size(), wrapped);
}
////
/
*
/
int
Screen
::
getCursorLine
()
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment