Bug 553032 - move MOZ_FORMAT_PRINTF to mfbt; r=froydnj

MozReview-Commit-ID: 2aC4ZUOsGPK

--HG--
extra : rebase_source : 9b72f9e9af80f165b82772e82ef64e66317805a5
This commit is contained in:
Tom Tromey 2016-10-11 12:42:58 -06:00
Родитель cadd5734c8
Коммит f1365f75b0
2 изменённых файлов: 10 добавлений и 10 удалений

Просмотреть файл

@ -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
*