Browse Source

[master] worked around sunstudio bug: adding redundant const in declaration.

JINMEI Tatuya 14 years ago
parent
commit
ba870bd641
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dns/dnssectime.h

+ 1 - 1
src/lib/dns/dnssectime.h

@@ -132,7 +132,7 @@ timeToText64(uint64_t value);
 /// 2^32-1 (the highest value in 32-bit unsigned integers) will be converted
 /// to "21060207062815", instead of "19691231235959".
 std::string
-timeToText32(uint32_t value);
+timeToText32(const uint32_t value);
 
 //@}
 }