Bumping gaia.json for 5 gaia revision(s) a=gaia-bump
[gecko.git] / mfbt / DebugOnly.h
blob5d0197b194ed024702886d4db187a717934ca33a
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=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
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /*
8 * Provides DebugOnly, a type for variables used only in debug builds (i.e. by
9 * assertions).
12 #ifndef mozilla_DebugOnly_h
13 #define mozilla_DebugOnly_h
15 #include "mozilla/Attributes.h"
17 namespace mozilla {
19 /**
20 * DebugOnly contains a value of type T, but only in debug builds. In release
21 * builds, it does not contain a value. This helper is intended to be used with
22 * MOZ_ASSERT()-style macros, allowing one to write:
24 * DebugOnly<bool> check = func();
25 * MOZ_ASSERT(check);
27 * more concisely than declaring |check| conditional on #ifdef DEBUG, but also
28 * without allocating storage space for |check| in release builds.
30 * DebugOnly instances can only be coerced to T in debug builds. In release
31 * builds they don't have a value, so type coercion is not well defined.
33 * Note that DebugOnly instances still take up one byte of space, plus padding,
34 * when used as members of structs.
36 template<typename T>
37 class DebugOnly
39 public:
40 #ifdef DEBUG
41 T value;
43 DebugOnly() { }
44 MOZ_IMPLICIT DebugOnly(const T& aOther) : value(aOther) { }
45 DebugOnly(const DebugOnly& aOther) : value(aOther.value) { }
46 DebugOnly& operator=(const T& aRhs) {
47 value = aRhs;
48 return *this;
51 void operator++(int) { value++; }
52 void operator--(int) { value--; }
54 T* operator&() { return &value; }
56 operator T&() { return value; }
57 operator const T&() const { return value; }
59 T& operator->() { return value; }
60 const T& operator->() const { return value; }
62 #else
63 DebugOnly() { }
64 MOZ_IMPLICIT DebugOnly(const T&) { }
65 DebugOnly(const DebugOnly&) { }
66 DebugOnly& operator=(const T&) { return *this; }
67 void operator++(int) { }
68 void operator--(int) { }
69 #endif
72 * DebugOnly must always have a destructor or else it will
73 * generate "unused variable" warnings, exactly what it's intended
74 * to avoid!
76 ~DebugOnly() {}
81 #endif /* mozilla_DebugOnly_h */