Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-08-05 23:56:59 +0300
committerAdam Langley <agl@google.com>2015-08-06 00:30:08 +0300
commit07bf9f69ba54294113bac938934180fb42ed3c4e (patch)
treed39c65b4c7e2680dfb46dceb44404cddf8c47448 /include/openssl/bio.h
parent906e2993a8cc74b09fd03d01ff2a6d6d02db96d2 (diff)
Drop DEFINE_STACK_OF.
We never need to define the actual structs because we always cast them before use. The types only exist to be distinct, and they can do that without a definition. Change-Id: I1e1ca0833b383f3be422675cb7b90dacbaf82acf Reviewed-on: https://boringssl-review.googlesource.com/5593 Reviewed-by: David Benjamin <davidben@chromium.org> Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'include/openssl/bio.h')
-rw-r--r--include/openssl/bio.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/openssl/bio.h b/include/openssl/bio.h
index 9b0bfa25..a3c1f62e 100644
--- a/include/openssl/bio.h
+++ b/include/openssl/bio.h
@@ -76,8 +76,6 @@ extern "C" {
/* Allocation and freeing. */
-DEFINE_STACK_OF(BIO);
-
/* BIO_new creates a new BIO with the given type and a reference count of one.
* It returns the fresh |BIO|, or NULL on error. */
OPENSSL_EXPORT BIO *BIO_new(const BIO_METHOD *type);