Skip to content
Snippets Groups Projects
Commit 3aecfc4c authored by hjk's avatar hjk
Browse files

Debugger: Don't discard newlines unconditionally in LLDB output


Change-Id: I9aedbf52f191073b6aceb0fda261b0c0dc4630f3
Reviewed-by: default avatarhjk <hjk121@nokiamail.com>
parent ff6296f3
Branches
Tags
No related merge requests found
...@@ -738,7 +738,8 @@ void LldbEngine::readLldbStandardError() ...@@ -738,7 +738,8 @@ void LldbEngine::readLldbStandardError()
static bool isEatable(char c) static bool isEatable(char c)
{ {
return c == 10 || c == 13; //return c == 10 || c == 13;
return c == 13;
} }
void LldbEngine::readLldbStandardOutput() void LldbEngine::readLldbStandardOutput()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment