Bug 1882457 - Update the release process docs for the monorepo migration. r=ahal...
[gecko.git] / security / nss / cpputil / freebl_scoped_ptrs.h
blob2f21ca903505c14c6984695d883b22b62b50e971
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
5 * You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef freebl_scoped_ptrs_h__
8 #define freebl_scoped_ptrs_h__
10 #include <memory>
11 #include "blapi.h"
13 struct ScopedDelete {
14 void operator()(CMACContext* ctx) { CMAC_Destroy(ctx, PR_TRUE); }
17 template <class T>
18 struct ScopedMaybeDelete {
19 void operator()(T* ptr) {
20 if (ptr) {
21 ScopedDelete del;
22 del(ptr);
27 #define SCOPED(x) typedef std::unique_ptr<x, ScopedMaybeDelete<x> > Scoped##x
29 SCOPED(CMACContext);
31 #undef SCOPED
33 #endif // freebl_scoped_ptrs_h__