freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[freetype2] master 2a4c823: Parentheses.


From: Alexei Podtelezhnikov
Subject: [freetype2] master 2a4c823: Parentheses.
Date: Sat, 21 May 2016 02:05:26 +0000 (UTC)

branch: master
commit 2a4c823f89cd9bd01cf9ccc8bcefc976ce06e32a
Author: Alexei Podtelezhnikov <address@hidden>
Commit: Alexei Podtelezhnikov <address@hidden>

    Parentheses.
---
 devel/ftoption.h                   |    2 +-
 include/freetype/config/ftoption.h |    2 +-
 include/freetype/ftotval.h         |   12 ++++++------
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/devel/ftoption.h b/devel/ftoption.h
index 2360ec6..d20df81 100644
--- a/devel/ftoption.h
+++ b/devel/ftoption.h
@@ -632,7 +632,7 @@ FT_BEGIN_HEADER
   /*                                                                       */
 /* #define TT_CONFIG_OPTION_SUBPIXEL_HINTING  1     */
 /* #define TT_CONFIG_OPTION_SUBPIXEL_HINTING  2     */
-#define TT_CONFIG_OPTION_SUBPIXEL_HINTING     1 | 2
+#define TT_CONFIG_OPTION_SUBPIXEL_HINTING     ( 1 | 2 )
 
 
   /*************************************************************************/
diff --git a/include/freetype/config/ftoption.h 
b/include/freetype/config/ftoption.h
index 1447908..7dd3f55 100644
--- a/include/freetype/config/ftoption.h
+++ b/include/freetype/config/ftoption.h
@@ -632,7 +632,7 @@ FT_BEGIN_HEADER
   /*                                                                       */
 /* #define TT_CONFIG_OPTION_SUBPIXEL_HINTING  1     */
 #define TT_CONFIG_OPTION_SUBPIXEL_HINTING     2
-/* #define TT_CONFIG_OPTION_SUBPIXEL_HINTING  1 | 2 */
+/* #define TT_CONFIG_OPTION_SUBPIXEL_HINTING  ( 1 | 2 ) */
 
 
   /*************************************************************************/
diff --git a/include/freetype/ftotval.h b/include/freetype/ftotval.h
index c678ef3..3e6e18d 100644
--- a/include/freetype/ftotval.h
+++ b/include/freetype/ftotval.h
@@ -106,12 +106,12 @@ FT_BEGIN_HEADER
 #define FT_VALIDATE_JSTF  0x1000
 #define FT_VALIDATE_MATH  0x2000
 
-#define FT_VALIDATE_OT  FT_VALIDATE_BASE | \
-                        FT_VALIDATE_GDEF | \
-                        FT_VALIDATE_GPOS | \
-                        FT_VALIDATE_GSUB | \
-                        FT_VALIDATE_JSTF | \
-                        FT_VALIDATE_MATH
+#define FT_VALIDATE_OT  ( FT_VALIDATE_BASE | \
+                          FT_VALIDATE_GDEF | \
+                          FT_VALIDATE_GPOS | \
+                          FT_VALIDATE_GSUB | \
+                          FT_VALIDATE_JSTF | \
+                          FT_VALIDATE_MATH )
 
  /**********************************************************************
   *



reply via email to

[Prev in Thread] Current Thread [Next in Thread]