mirror of
				https://github.com/boostorg/config.git
				synced 2025-11-04 09:41:39 +01:00 
			
		
		
		
	
		
			
	
	
		
			27 lines
		
	
	
		
			890 B
		
	
	
	
		
			C++
		
	
	
	
	
	
		
		
			
		
	
	
			27 lines
		
	
	
		
			890 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| 
								 | 
							
								//  Boost config.hpp configuration header file  ------------------------------//
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								//  (C) Copyright Boost.org 1999. Permission to copy, use, modify, sell and
							 | 
						||
| 
								 | 
							
								//  distribute this software is granted provided this copyright notice appears
							 | 
						||
| 
								 | 
							
								//  in all copies. This software is provided "as is" without express or implied
							 | 
						||
| 
								 | 
							
								//  warranty, and with no claim as to its suitability for any purpose.
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								//  See http://www.boost.org for most recent version.
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#ifndef BOOST_VERSION_HPP
							 | 
						||
| 
								 | 
							
								#define BOOST_VERSION_HPP
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								//
							 | 
						||
| 
								 | 
							
								//  Caution, this is the only boost header that is guarenteed
							 | 
						||
| 
								 | 
							
								//  to change with every boost release, including this header
							 | 
						||
| 
								 | 
							
								//  will cause a recompile every time a new boost version is
							 | 
						||
| 
								 | 
							
								//  released.
							 | 
						||
| 
								 | 
							
								//
							 | 
						||
| 
								 | 
							
								//  BOOST_VERSION % 100 is the sub-minor version
							 | 
						||
| 
								 | 
							
								//  BOOST_VERSION / 100 % 1000 is the minor version
							 | 
						||
| 
								 | 
							
								//  BOOST_VERSION / 100000 is the major version
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#define BOOST_VERSION 102400
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#endif
							 | 
						||
| 
								 | 
							
								
							 |