summaryrefslogtreecommitdiff
path: root/src/cli
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli')
-rw-r--r--src/cli/Main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/Main.cpp b/src/cli/Main.cpp
index e9b42c0..9688757 100644
--- a/src/cli/Main.cpp
+++ b/src/cli/Main.cpp
@@ -237,8 +237,8 @@ int main(int argc, char **argv)
}
// now all preparation is done and we can parse the input document.
- Rooted<Node> docNode = context.import(inputPath, "", "",
- {&RttiTypes::Document});
+ Rooted<Node> docNode =
+ context.import(inputPath, "", "", {&RttiTypes::Document});
if (logger.hasError() || docNode == nullptr) {
logger.fatalError("Errors occured while parsing the document");
return ERROR_IN_DOCUMENT;