1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-10-31 00:07:39 +02:00

- Foundation for starting a random map is done - Moved StdInc.h to header file in some /Map and /RMG compilation units(better syntax highlighting, should have no negative impact)

This commit is contained in:
beegee1
2012-11-20 17:53:45 +00:00
parent 8eba824ada
commit 53169abea7
32 changed files with 520 additions and 302 deletions

View File

@@ -21,6 +21,7 @@
#include "CTownHandler.h"
#include "Map/CCampaignHandler.h"
#include "NetPacks.h"
#include "CDefObjInfoHandler.h"
#include <boost/asio.hpp>
@@ -199,11 +200,11 @@ CConnection::~CConnection(void)
template<class T>
CConnection & CConnection::operator&(const T &t) {
throw new 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
return *this;
return *this;
}
void CConnection::close()