mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 10:50:04 +00:00 
			
		
		
		
	Guard pragma warning statements with ifdef msvc
This commit is contained in:
		
							parent
							
								
									ec45e0bce0
								
							
						
					
					
						commit
						509fc76653
					
				
					 12 changed files with 100 additions and 28 deletions
				
			
		|  | @ -6,12 +6,18 @@ | |||
| #include <fstream> | ||||
| #include <sstream> | ||||
| 
 | ||||
| #pragma warning(push) | ||||
| #pragma warning(disable : 4706) | ||||
| #if defined(_MSC_VER) | ||||
| #   pragma warning(push) | ||||
| #   pragma warning(disable : 4706) | ||||
| #endif | ||||
| 
 | ||||
| #include <boost/iostreams/copy.hpp> | ||||
| #include <boost/iostreams/filtering_streambuf.hpp> | ||||
| #include <boost/iostreams/filter/gzip.hpp> | ||||
| #pragma warning(pop) | ||||
| 
 | ||||
| #if defined(_MSC_VER) | ||||
| #   pragma warning(pop) | ||||
| #endif | ||||
| 
 | ||||
| namespace scwx | ||||
| { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Dan Paulat
						Dan Paulat