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:
Diffstat (limited to 'crypto/asn1/asn1_test.cc')
-rw-r--r--crypto/asn1/asn1_test.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/crypto/asn1/asn1_test.cc b/crypto/asn1/asn1_test.cc
index e3e310bd..8b024427 100644
--- a/crypto/asn1/asn1_test.cc
+++ b/crypto/asn1/asn1_test.cc
@@ -21,8 +21,6 @@
#include "../test/scoped_types.h"
-namespace bssl {
-
// kTag128 is an ASN.1 structure with a universal tag with number 128.
static const uint8_t kTag128[] = {
0x1f, 0x81, 0x00, 0x01, 0x00,
@@ -71,12 +69,10 @@ static bool TestLargeTags() {
return true;
}
-} // namespace bssl
-
int main() {
CRYPTO_library_init();
- if (!bssl::TestLargeTags()) {
+ if (!TestLargeTags()) {
return 1;
}