Parser.hpp: Fix an indentation mistake
Signed-off-by: Username404 <w.iron.zombie@gmail.com>
This commit is contained in:
parent
4f99cd6cae
commit
164e5c5da3
|
@ -149,7 +149,7 @@ namespace Parser {
|
||||||
} catch (const NamedIdentifier<true>::identifier_reserved_exception&) {
|
} catch (const NamedIdentifier<true>::identifier_reserved_exception&) {
|
||||||
parsingError(current, " is a reserved identifier", true);
|
parsingError(current, " is a reserved identifier", true);
|
||||||
}
|
}
|
||||||
if (not parseTree.empty()) {
|
if (not parseTree.empty()) {
|
||||||
const auto& last = parseTree.cend() - 1;
|
const auto& last = parseTree.cend() - 1;
|
||||||
const type_info& lastId = last->get()->getId();
|
const type_info& lastId = last->get()->getId();
|
||||||
const auto* last_identifier = dynamic_cast<NamedIdentifier<true>*>(last->get());
|
const auto* last_identifier = dynamic_cast<NamedIdentifier<true>*>(last->get());
|
||||||
|
|
Loading…
Reference in New Issue