Fix a couple of 'unused variable' warnings in a vector test. NFC.

llvm-svn: 337016
This commit is contained in:
Marshall Clow 2018-07-13 16:26:16 +00:00
parent ad4e579407
commit 3f7d20904f
1 changed files with 4 additions and 0 deletions

View File

@ -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;