summaryrefslogtreecommitdiff
path: root/src/expr/node_value.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/node_value.h')
-rw-r--r--src/expr/node_value.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/expr/node_value.h b/src/expr/node_value.h
index 63121b981..2b26b273d 100644
--- a/src/expr/node_value.h
+++ b/src/expr/node_value.h
@@ -364,7 +364,9 @@ inline NodeValue::iterator<T> NodeValue::end() const {
template <typename T, Kind kind>
inline NodeValue::iterator<T> NodeValue::begin() const {
- if (d_kind != kind) return iterator<T>(this);
+ if(d_kind != kind) {
+ return iterator<T>(this);
+ }
NodeValue* const* firstChild = d_children;
if(getMetaKind() == kind::metakind::PARAMETERIZED) {
++firstChild;
@@ -374,7 +376,9 @@ inline NodeValue::iterator<T> NodeValue::begin() const {
template <typename T, Kind kind>
inline NodeValue::iterator<T> NodeValue::end() const {
- if (d_kind != kind) return iterator<T>(this + 1);
+ if(d_kind != kind) {
+ return iterator<T>(this + 1);
+ }
return iterator<T>(d_children + d_nchildren);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback