Index: libcfa/src/enum.hfa
===================================================================
--- libcfa/src/enum.hfa	(revision df2e00f233571fd339c5f2bb9025973837d85481)
+++ libcfa/src/enum.hfa	(revision 960665c5c53c610ff83a37c465dd5034ca65a9ac)
@@ -4,6 +4,6 @@
 
 forall( E ) trait Bounded {
-	E lowerBound();
-	E upperBound();
+	E lowerBound(void);
+	E upperBound(void);
 };
 
@@ -54,5 +54,5 @@
 
 static inline
-forall( E | Serial(E) | CfaEnum(E) ) {
+forall( E | CfaEnum(E) | Serial(E) ) {
 	int ?==?( E l, E r ) { return posn( l ) == posn( r ); }	// relational operators
 	int ?!=?( E l, E r ) { return posn( l ) != posn( r ); }
