Index: libcfa/src/enum.hfa
===================================================================
--- libcfa/src/enum.hfa	(revision 737bf737154ccbbd457126f5c3fe477216ece460)
+++ libcfa/src/enum.hfa	(revision 9bb6c5f932cd0dc4fdb4d3e7678e9286959c06a0)
@@ -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 ); }
