xpcom/base/nsErrorAssertsC.c

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 #include "mozilla/Assertions.h"
     3 #include "nsError.h"
     5 /*
     6  * No reason to pull in Assertions.h for every single file that includes
     7  * nsError.h, so let's put this in its own .c file instead of in the .h.
     8  */
     9 MOZ_STATIC_ASSERT(((nsresult)0) < ((nsresult)-1),
    10                   "nsresult must be an unsigned type");
    11 MOZ_STATIC_ASSERT(sizeof(nsresult) == sizeof(uint32_t),
    12                   "nsresult must be 32 bits");

mercurial