Remove '.' in expected warning

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54051 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2008-07-25 20:30:34 +00:00
Родитель 694eefb745
Коммит f19f911916
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2,7 +2,7 @@
@interface A
{
@private int x; // expected-warning {{Instance variable 'x' in class 'A' is never used.}}
@private int x; // expected-warning {{Instance variable 'x' in class 'A' is never used}}
}
@end