author | Ehsan Akhgari <ehsan@mozilla.com> |
Mon, 22 Oct 2012 17:05:07 -0400 | |
changeset 119016 | d04e584c197d4c1bfa2e2592d18499467a7cc957 |
parent 119015 | 22f09b60485662785317f23cc0e8dd687b54baed |
child 119017 | c4aecf0cb060ed245ff88447fd8d181109c82cf7 |
push id | 1997 |
push user | akeybl@mozilla.com |
push date | Mon, 07 Jan 2013 21:25:26 +0000 |
treeherder | mozilla-beta@4baf45cdcf21 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 802806 |
milestone | 19.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
mfbt/TypeTraits.h | file | annotate | diff | comparison | revisions |
--- a/mfbt/TypeTraits.h +++ b/mfbt/TypeTraits.h @@ -8,18 +8,18 @@ #define mozilla_TypeTraits_h_ namespace mozilla { namespace detail { /** * The trickery used to implement IsBaseOf here makes it possible to use it for - * the cases of multiple inheritence. This code was inspired by the sample code - * here: + * the cases of private and multiple inheritance. This code was inspired by the + * sample code here: * * http://stackoverflow.com/questions/2910979/how-is-base-of-works */ template<class Base, class Derived> class IsBaseOfHelper { public: operator Base*() const;