mirror of
				https://github.com/vcmi/vcmi.git
				synced 2025-10-31 00:07:39 +02:00 
			
		
		
		
	second part of c++11 update. gcc 4.5 and VS 2010 are no longer supported
- BOOST_FOREACH -> for - replaced several boost classes with std (e.g. unordered) - removed gcc-4.5 workarounds - ran clang c++11 migration tool to detect some cases: - - pointer initialized with "0" to nullptr - - replace for with iterators with range-based for - - use auto in some situations (type name specified twice, avoid long iterators type names)
This commit is contained in:
		| @@ -186,7 +186,7 @@ CConnection::~CConnection(void) | ||||
|  | ||||
| template<class T> | ||||
| CConnection & CConnection::operator&(const T &t) { | ||||
| 	throw std::exception(); | ||||
| //	throw std::exception(); | ||||
| //XXX this is temporaly ? solution to fix gcc (4.3.3, other?) compilation | ||||
| //    problem for more details contact t0@czlug.icis.pcz.pl or impono@gmail.com | ||||
| //    do not remove this exception it shoudnt be called | ||||
|   | ||||
		Reference in New Issue
	
	Block a user