зеркало из https://github.com/mozilla/pjs.git
b=30391 r=troy@netscape.com Patch from rbs@maths.uq.edu.au to add parens when
necessary to PR_ABS macro
This commit is contained in:
Родитель
8bd4cb435f
Коммит
dde3e654bb
|
@ -68,7 +68,7 @@
|
|||
#include "nsIServiceManager.h"
|
||||
|
||||
#ifndef PR_ABS
|
||||
#define PR_ABS(x) (x < 0 ? -x : x)
|
||||
#define PR_ABS(x) ((x) < 0 ? -(x) : (x))
|
||||
#endif
|
||||
|
||||
static NS_DEFINE_IID(kIDOMTextIID, NS_IDOMTEXT_IID);
|
||||
|
|
|
@ -68,7 +68,7 @@
|
|||
#include "nsIServiceManager.h"
|
||||
|
||||
#ifndef PR_ABS
|
||||
#define PR_ABS(x) (x < 0 ? -x : x)
|
||||
#define PR_ABS(x) ((x) < 0 ? -(x) : (x))
|
||||
#endif
|
||||
|
||||
static NS_DEFINE_IID(kIDOMTextIID, NS_IDOMTEXT_IID);
|
||||
|
|
Загрузка…
Ссылка в новой задаче