forked from OSchip/llvm-project
Fix a couple of 'unused variable' warnings in a vector test. NFC.
llvm-svn: 337016
This commit is contained in:
parent
ad4e579407
commit
3f7d20904f
|
@ -77,6 +77,8 @@ int main()
|
|||
typedef std::vector<T> C;
|
||||
C::iterator i;
|
||||
C::const_iterator j;
|
||||
(void) i;
|
||||
(void) j;
|
||||
}
|
||||
#if TEST_STD_VER >= 11
|
||||
{
|
||||
|
@ -125,6 +127,8 @@ int main()
|
|||
typedef std::vector<T, min_allocator<T>> C;
|
||||
C::iterator i;
|
||||
C::const_iterator j;
|
||||
(void) i;
|
||||
(void) j;
|
||||
}
|
||||
{
|
||||
typedef A T;
|
||||
|
|
Loading…
Reference in New Issue