Change error output stream to stderr
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
CXX=g++-8
|
CXX=g++
|
||||||
|
|
||||||
default: tiv
|
default: tiv
|
||||||
|
|
||||||
|
|||||||
@@ -362,7 +362,7 @@ void emitCodepoint(int codepoint) {
|
|||||||
std::cout << (char) (0x80 | ((codepoint >> 6) & 0x3f));
|
std::cout << (char) (0x80 | ((codepoint >> 6) & 0x3f));
|
||||||
std::cout << (char) (0x80 | (codepoint & 0x3f));
|
std::cout << (char) (0x80 | (codepoint & 0x3f));
|
||||||
} else {
|
} else {
|
||||||
std::cout << "ERROR";
|
std::cerr << "ERROR";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user