aboutsummaryrefslogtreecommitdiffstats
path: root/sample/bls_smpl.cpp
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2016-08-31 09:59:53 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2016-08-31 09:59:53 +0800
commitdc508d1ff0607285d8b4df8a71805be28ef5b8f5 (patch)
tree60f2efa81fc455e3feced9519e90c5592f022d4e /sample/bls_smpl.cpp
parent81e88d1c6d9fca8f92787cab308deceb2861b6c3 (diff)
downloaddexon-bls-dc508d1ff0607285d8b4df8a71805be28ef5b8f5.tar
dexon-bls-dc508d1ff0607285d8b4df8a71805be28ef5b8f5.tar.gz
dexon-bls-dc508d1ff0607285d8b4df8a71805be28ef5b8f5.tar.bz2
dexon-bls-dc508d1ff0607285d8b4df8a71805be28ef5b8f5.tar.lz
dexon-bls-dc508d1ff0607285d8b4df8a71805be28ef5b8f5.tar.xz
dexon-bls-dc508d1ff0607285d8b4df8a71805be28ef5b8f5.tar.zst
dexon-bls-dc508d1ff0607285d8b4df8a71805be28ef5b8f5.zip
always hex string with prefix 0x
Diffstat (limited to 'sample/bls_smpl.cpp')
-rw-r--r--sample/bls_smpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sample/bls_smpl.cpp b/sample/bls_smpl.cpp
index dd73ed3..f87294b 100644
--- a/sample/bls_smpl.cpp
+++ b/sample/bls_smpl.cpp
@@ -21,7 +21,7 @@ void save(const std::string& file, const T& t, const bls::Id& id = 0)
{
const std::string name = makeName(file, id);
std::ofstream ofs(name.c_str(), std::ios::binary);
- if (!(ofs << std::hex << std::showbase << t)) {
+ if (!(ofs << t)) {
throw cybozu::Exception("can't save") << name;
}
}