]> git.saurik.com Git - bison.git/blobdiff - src/assoc.c
c++: style: use "unsigned", not "unsigned int"
[bison.git] / src / assoc.c
index 43227f02be718cf8fc30d256386e057686ea8af1..c24c703675c9c2e626a2f8725c75a224ed1ac4cb 100644 (file)
@@ -1,6 +1,6 @@
 /* Associativity information.
 
-   Copyright (C) 2002, 2005-2006, 2009-2013 Free Software Foundation,
+   Copyright (C) 2002, 2005-2006, 2008-2015 Free Software Foundation,
    Inc.
 
    This file is part of Bison, the GNU Compiler Compiler.
@@ -43,5 +43,8 @@ assoc_to_string (assoc a)
 
     case non_assoc:
       return "%nonassoc";
+
+    case precedence_assoc:
+      return "%precedence";
     }
 }