From 1f673479f5405b92b0e499a458624261716bea9b Mon Sep 17 00:00:00 2001 From: Mike Hamburg Date: Fri, 1 May 2015 17:17:20 -0700 Subject: [PATCH] remove EXPLICIT_CON for serializing a point --- include/decaf.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/decaf.hxx b/include/decaf.hxx index 914b7d0..d3b09bd 100644 --- a/include/decaf.hxx +++ b/include/decaf.hxx @@ -528,7 +528,7 @@ template struct EcGroup { /** * @brief Encode to string. The identity encodes to the all-zero string. */ - inline EXPLICIT_CON operator SecureBuffer() const NOEXCEPT { + inline operator SecureBuffer() const NOEXCEPT { SecureBuffer buffer(SER_BYTES); encode(buffer.data()); return buffer; }