Add default Chip constructor for STL functions

Signed-off-by: Zane Shelley <zshelle@us.ibm.com>
Change-Id: I01b58a3919b9264b6d57c66e4ce04234757ffd14
diff --git a/src/hei_signature.hpp b/src/hei_signature.hpp
index b820600..eb02b88 100644
--- a/src/hei_signature.hpp
+++ b/src/hei_signature.hpp
@@ -17,7 +17,12 @@
 class Signature
 {
   public: // Constructors, destructor, assignment, etc.
-    /** @brief Default constructor. */
+    /**
+     * @brief Default contructor.
+     *
+     * In general the default constructor should not be used, but it is needed
+     * for some STL functions.
+     */
     Signature() = default;
 
     /**