Index: libcfa/src/rational.cfa
===================================================================
--- libcfa/src/rational.cfa	(revision 44e2a5aa5a96f0c9166e589208d96cb745e8c930)
+++ libcfa/src/rational.cfa	(revision 74cbaa3e6f4f0cbb41f5add856c29dfb6d5b435b)
@@ -10,6 +10,6 @@
 // Created On       : Wed Apr  6 17:54:28 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Aug  2 07:41:25 2024
-// Update Count     : 199
+// Last Modified On : Fri Nov  8 17:00:38 2024
+// Update Count     : 205
 //
 
@@ -203,5 +203,5 @@
 
 	forall( ostype & | ostream( ostype ) | { ostype & ?|?( ostype &, T ); } ) {
-		ostype & ?|?( ostype & os, rational(T) r ) {
+	ostype & ?|?( ostype & os, rational(T) r ) {
 			return os | r.numerator | '/' | r.denominator;
 		} // ?|?
@@ -211,5 +211,5 @@
 
 forall( T | arithmetic( T ) | { T ?\?( T, unsigned long ); } ) {
-	rational(T) ?\?( rational(T) x, long int y ) {
+rational(T) ?\?( rational(T) x, long int y ) {
 		if ( y < 0 ) {
 			return (rational(T)){ x.denominator \ -y, x.numerator \ -y };
