[gobject-introspection] scannerlexer: don't reject __volatile__ tokens



commit 90289794efacae16e96cf90c513799039603939f
Author: Giovanni Campagna <gcampagn redhat com>
Date:   Fri Aug 23 12:13:25 2013 +0200

    scannerlexer: don't reject __volatile__ tokens
    
    They should be treated the same as regular volatile specifiers,
    not like __attribute__() or __asm__().

 giscanner/scannerlexer.l |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/giscanner/scannerlexer.l b/giscanner/scannerlexer.l
index bf51d0d..f7199ff 100644
--- a/giscanner/scannerlexer.l
+++ b/giscanner/scannerlexer.l
@@ -148,8 +148,8 @@ stringtext                          ([^\\\"])|(\\.)
 "__signed__"                           { return SIGNED; }
 "__restrict"                           { return RESTRICT; }
 "__typeof"                             { if (!parse_ignored_macro()) REJECT; }
-"__volatile"                           { if (!parse_ignored_macro()) REJECT; }
-"__volatile__"                         { if (!parse_ignored_macro()) REJECT; }
+"__volatile"                           { return VOLATILE; }
+"__volatile__"                         { return VOLATILE; }
 "_Bool"                                        { return BOOL; }
 
 "G_GINT64_CONSTANT"                    { return INTL_CONST; }


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