| Index: runtime/bin/secure_socket_boringssl.h
 | 
| diff --git a/runtime/bin/secure_socket_boringssl.h b/runtime/bin/secure_socket_boringssl.h
 | 
| index fe7bd8df3250c28a33c9e2ef4e0723dcbfc3b189..a24194ab5b23f4ab2fa4fbbde90a5bdfaf59ef70 100644
 | 
| --- a/runtime/bin/secure_socket_boringssl.h
 | 
| +++ b/runtime/bin/secure_socket_boringssl.h
 | 
| @@ -35,10 +35,8 @@ extern unsigned int root_certificates_pem_length;
 | 
|  
 | 
|  class SSLContext {
 | 
|   public:
 | 
| -  explicit SSLContext(SSL_CTX* context) :
 | 
| -      context_(context),
 | 
| -      alpn_protocol_string_(NULL) {
 | 
| -  }
 | 
| +  explicit SSLContext(SSL_CTX* context)
 | 
| +      : context_(context), alpn_protocol_string_(NULL) {}
 | 
|  
 | 
|    ~SSLContext() {
 | 
|      SSL_CTX_free(context_);
 | 
| @@ -92,7 +90,7 @@ class SSLFilter : public ReferenceCounted<SSLFilter> {
 | 
|          handshake_complete_(NULL),
 | 
|          bad_certificate_callback_(NULL),
 | 
|          in_handshake_(false),
 | 
| -        hostname_(NULL) { }
 | 
| +        hostname_(NULL) {}
 | 
|  
 | 
|    ~SSLFilter();
 | 
|  
 | 
| 
 |