Index: cxxtools-2.1/include/cxxtools/char.h
===================================================================
--- cxxtools-2.1.orig/include/cxxtools/char.h	2012-02-13 22:16:04.000000000 +0200
+++ cxxtools-2.1/include/cxxtools/char.h	2012-05-12 10:56:59.965976629 +0300
@@ -211,6 +211,12 @@
             friend bool operator==(const Char& a, int b)
             { return a.value() == (unsigned int)b; }
 
+            //! @brief Returns $true$ if the a and b are the same character; $false$ otherwise.
+            //! @return $true$ if the a and b are the same character; $false$ otherwise.
+            friend bool operator==(const Char& a, unsigned int b)
+            { return a.value() == b; }
+
+
             //! @brief Returns $true$ if the a and b are not the same character; $false$ otherwise.
             //! @return $true$ if the a and b are not the same character; $false$ otherwise.
             friend bool operator!=(const Char& a, const Char& b)
