Core/Misc: Fixed another compiler segmentation fault when compiling AsyncAcceptor with gcc 4.7.2

This commit is contained in:
Shauren
2014-07-11 22:24:22 +02:00
parent eaee0f5dd0
commit 264363e76c

View File

@@ -53,7 +53,8 @@ private:
std::make_shared<T>(std::move(this->_socket))->Start();
}
AsyncAccept();
// lets slap some more this-> on this so we can fix this bug with gcc 4.7.2 throwing internals in yo face
this->AsyncAccept();
});
}