Index: libcfa/src/enum.hfa
===================================================================
--- libcfa/src/enum.hfa	(revision acab1bd77b1e5193ebd46506b2b435a29f3f0124)
+++ libcfa/src/enum.hfa	(revision 26d40a153b36433771afa35935935e66c9bedb04)
@@ -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 ); }
