mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-08 03:42:27 +02:00
Update JSBaker.cpp
This commit is contained in:
parent
5ad1efb923
commit
4486212e05
1 changed files with 2 additions and 2 deletions
|
@ -175,7 +175,7 @@ bool JSBaker::bakeJS(const QByteArray* inputFile, QByteArray* outputFile) {
|
|||
return true;
|
||||
}
|
||||
|
||||
void JSBaker::handleSingleLineComments(QTextStream * in) {
|
||||
void JSBaker::handleSingleLineComments(QTextStream* in) {
|
||||
QChar character;
|
||||
while (!in->atEnd()) {
|
||||
*in >> character;
|
||||
|
@ -185,7 +185,7 @@ void JSBaker::handleSingleLineComments(QTextStream * in) {
|
|||
}
|
||||
}
|
||||
|
||||
bool JSBaker::handleMultiLineComments(QTextStream * in) {
|
||||
bool JSBaker::handleMultiLineComments(QTextStream* in) {
|
||||
QChar character;
|
||||
while (!in->atEnd()) {
|
||||
*in >> character;
|
||||
|
|
Loading…
Reference in a new issue