Minor changes

This commit is contained in:
Eduardo Bart 2012-08-03 16:35:39 -03:00
parent 4e0642c814
commit 6a68569319
2 changed files with 2 additions and 7 deletions

View File

@ -45,11 +45,6 @@ void ConsoleApplication::run()
while(!m_stopping) { while(!m_stopping) {
poll(); poll();
#ifdef FW_NET
Connection::poll();
#endif
stdext::millisleep(1); stdext::millisleep(1);
g_clock.update(); g_clock.update();
m_frameCounter.update(); m_frameCounter.update();

View File

@ -152,10 +152,10 @@ private:
// restore memory alignment // restore memory alignment
#pragma pack(pop) #pragma pack(pop)
}
namespace std { namespace std {
template<class T, class U> void swap(stdext::packed_vector<T,U>& lhs, stdext::packed_vector<T,U>& rhs) { lhs.swap(rhs); } template<class T, class U> void swap(stdext::packed_vector<T,U>& lhs, stdext::packed_vector<T,U>& rhs) { lhs.swap(rhs); }
} }
}
#endif #endif