Merge pull request #13 from aiq/master

two little cleanup fixes
diff --git a/src/bignum.h b/src/bignum.h
index 5ec3544..c385f22 100644
--- a/src/bignum.h
+++ b/src/bignum.h
@@ -49,7 +49,6 @@
 
   void AssignPowerUInt16(uint16_t base, int exponent);
 
-  void AddUInt16(uint16_t operand);
   void AddUInt64(uint64_t operand);
   void AddBignum(const Bignum& other);
   // Precondition: this >= other.
diff --git a/test/cctest/test-bignum.cc b/test/cctest/test-bignum.cc
index 0dc9469..4f0c592 100644
--- a/test/cctest/test-bignum.cc
+++ b/test/cctest/test-bignum.cc
@@ -993,6 +993,7 @@
   other.AssignUInt16(2);
   other.ShiftLeft(500);
   CHECK_EQ(5, bignum.DivideModuloIntBignum(other));
+  CHECK(bignum.ToHexString(buffer, kBufferSize));
   CHECK_EQ("0", buffer);
 
   bignum.AssignUInt16(11);