diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2016-09-05 14:07:32 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2016-09-05 14:07:32 +0800 |
commit | 9b8ec231c4333a8cc43bce2c2b0297dbda0ad54f (patch) | |
tree | 31a571fcb3340e751ed5b32abe5b2ea6d1ff4cef | |
parent | 12bb5c058ac2cd5775ae6f4c800792547896300c (diff) | |
download | dexon-bls-9b8ec231c4333a8cc43bce2c2b0297dbda0ad54f.tar.gz dexon-bls-9b8ec231c4333a8cc43bce2c2b0297dbda0ad54f.tar.zst dexon-bls-9b8ec231c4333a8cc43bce2c2b0297dbda0ad54f.zip |
follow new getStr() of mcl
-rw-r--r-- | src/bls.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bls.cpp b/src/bls.cpp index 2fce4b3..03f7d16 100644 --- a/src/bls.cpp +++ b/src/bls.cpp @@ -178,7 +178,7 @@ template<class T> std::ostream& writeAsHex(std::ostream& os, const T& t) { std::string str; - t.getStr(str, 16, true); + t.getStr(str, mcl::IoHexPrefix); return os << str; } |