28 lines
		
	
	
		
			617 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			617 B
		
	
	
	
		
			C++
		
	
	
	
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
// <vector>
 | 
						|
// vector<bool>
 | 
						|
 | 
						|
// void shrink_to_fit();
 | 
						|
 | 
						|
#include <vector>
 | 
						|
#include <cassert>
 | 
						|
 | 
						|
int main()
 | 
						|
{
 | 
						|
    {
 | 
						|
        std::vector<bool> v(100);
 | 
						|
        v.push_back(1);
 | 
						|
        v.shrink_to_fit();
 | 
						|
        assert(v.capacity() >= 101);
 | 
						|
        assert(v.size() >= 101);
 | 
						|
    }
 | 
						|
}
 |