Index: libcfa/src/gmp.hfa
===================================================================
--- libcfa/src/gmp.hfa	(revision f00b2c2cbf6d9cefb36cf7e0de0a1cd7c6dd5a0e)
+++ libcfa/src/gmp.hfa	(revision d231700d6ebda52b790c9c45a3fe6bbb1022aec2)
@@ -10,6 +10,6 @@
 // Created On       : Tue Apr 19 08:43:43 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Feb  7 22:10:30 2020
-// Update Count     : 29
+// Last Modified On : Sun Feb  9 09:56:54 2020
+// Update Count     : 31
 //
 
@@ -24,9 +24,7 @@
 
 static inline {
-	// constructor
+	// constructor, zero_t/one_t are unnecessary because of relationship with signed/unsigned int
 	void ?{}( Int & this ) { mpz_init( this.mpz ); }
 	void ?{}( Int & this, Int init ) { mpz_init_set( this.mpz, init.mpz ); }
-	void ?{}( Int & this, zero_t ) { mpz_init_set_si( this.mpz, 0 ); }
-	void ?{}( Int & this, one_t ) { mpz_init_set_si( this.mpz, 1 ); }
 	void ?{}( Int & this, signed long int init ) { mpz_init_set_si( this.mpz, init ); }
 	void ?{}( Int & this, unsigned long int init ) { mpz_init_set_ui( this.mpz, init ); }
