Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(353)

Unified Diff: third_party/libxslt/libxslt/xsltconfig.h.in

Issue 1848793005: Roll libxslt to 891681e3e948f31732229f53cb6db7215f740fc7 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/libxslt/libxslt/xsltconfig.h ('k') | third_party/libxslt/libxslt/xsltutils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libxslt/libxslt/xsltconfig.h.in
diff --git a/third_party/libxslt/libxslt/xsltconfig.h.in b/third_party/libxslt/libxslt/xsltconfig.h.in
index b4cac6d3219305f682cbcb2625447a9376713fe0..6e4e32850c9c6f29c91e0ded857155ee999a7766 100644
--- a/third_party/libxslt/libxslt/xsltconfig.h.in
+++ b/third_party/libxslt/libxslt/xsltconfig.h.in
@@ -153,6 +153,17 @@ extern "C" {
#endif
/**
+ * LIBXSLT_ATTR_FORMAT:
+ *
+ * This macro is used to indicate to GCC the parameters are printf-like
+ */
+#ifdef __GNUC__
+#define LIBXSLT_ATTR_FORMAT(fmt,args) __attribute__((__format__(__printf__,fmt,args)))
+#else
+#define LIBXSLT_ATTR_FORMAT(fmt,args)
+#endif
+
+/**
* LIBXSLT_PUBLIC:
*
* This macro is used to declare PUBLIC variables for Cygwin and for MSC on Windows
« no previous file with comments | « third_party/libxslt/libxslt/xsltconfig.h ('k') | third_party/libxslt/libxslt/xsltutils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698