summaryrefslogtreecommitdiffstats
path: root/base/openssl_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/openssl_util.h')
-rw-r--r--base/openssl_util.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/base/openssl_util.h b/base/openssl_util.h
index a3f64d4..ed4101f 100644
--- a/base/openssl_util.h
+++ b/base/openssl_util.h
@@ -55,17 +55,6 @@ class ScopedOpenSSLSafeSizeBuffer {
// are send to VLOG(1), on a release build they are disregarded.
void ClearOpenSSLERRStack();
-// Put an instance of this class on the call stack to automatically clear the
-// OpenSSL error stack on exit of your function.
-class ScopedOpenSSLERRClearer {
- public:
- ScopedOpenSSLERRClearer() {}
- ~ScopedOpenSSLERRClearer() { ClearOpenSSLERRStack(); }
-
- private:
- DISALLOW_COPY_AND_ASSIGN(ScopedOpenSSLERRClearer);
-};
-
} // namespace base
#endif // BASE_OPENSSL_UTIL_H_