[python] Fix warning in c-code inside testcase

llvm-svn: 156007
This commit is contained in:
Anders Waldenborg 2012-05-02 19:35:37 +00:00
parent d96b46ace2
commit d8f66426a1
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ def test_is_volatile_qualified():
def test_is_restrict_qualified():
"""Ensure Type.is_restrict_qualified works."""
tu = get_tu('struct s { void * restrict i; void * j };')
tu = get_tu('struct s { void * restrict i; void * j; };')
i = get_cursor(tu, 'i')
j = get_cursor(tu, 'j')