summaryrefslogtreecommitdiff
path: root/src/expr/attribute_internals.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/attribute_internals.h')
-rw-r--r--src/expr/attribute_internals.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/expr/attribute_internals.h b/src/expr/attribute_internals.h
index e47dce434..bc34324b0 100644
--- a/src/expr/attribute_internals.h
+++ b/src/expr/attribute_internals.h
@@ -463,9 +463,8 @@ public:
*/
static inline uint64_t registerAttribute() {
const uint64_t id = attr::LastAttributeId<bool, context_dep>::getNextId();
- AlwaysAssert( id <= 63,
- "Too many boolean node attributes registered "
- "during initialization !" );
+ AlwaysAssert(id <= 63) << "Too many boolean node attributes registered "
+ "during initialization !";
return id;
}
};/* class Attribute<..., bool, ...> */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback