зеркало из https://github.com/mozilla/gecko-dev.git
Bug 553032 - move MOZ_FORMAT_PRINTF to mfbt; r=froydnj
MozReview-Commit-ID: 2aC4ZUOsGPK --HG-- extra : rebase_source : 9b72f9e9af80f165b82772e82ef64e66317805a5
This commit is contained in:
Родитель
cadd5734c8
Коммит
f1365f75b0
|
@ -569,4 +569,14 @@
|
|||
|
||||
#endif /* __cplusplus */
|
||||
|
||||
/**
|
||||
* Printf style formats
|
||||
*/
|
||||
#ifdef __GNUC__
|
||||
#define MOZ_FORMAT_PRINTF(stringIndex, firstToCheck) \
|
||||
__attribute__ ((format (printf, stringIndex, firstToCheck)))
|
||||
#else
|
||||
#define MOZ_FORMAT_PRINTF(stringIndex, firstToCheck)
|
||||
#endif
|
||||
|
||||
#endif /* mozilla_Attributes_h */
|
||||
|
|
|
@ -159,16 +159,6 @@
|
|||
# define MOZ_DEPRECATED
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Printf style formats
|
||||
*/
|
||||
#ifdef __GNUC__
|
||||
#define MOZ_FORMAT_PRINTF(stringIndex, firstToCheck) \
|
||||
__attribute__ ((format (printf, stringIndex, firstToCheck)))
|
||||
#else
|
||||
#define MOZ_FORMAT_PRINTF(stringIndex, firstToCheck)
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Generic API modifiers which return the standard XPCOM nsresult type
|
||||
*
|
||||
|
|
Загрузка…
Ссылка в новой задаче