use C++0x, change prerequisites headers

This commit is contained in:
Eduardo Bart
2011-04-02 18:02:39 -03:00
parent 7ef92bb0ac
commit d29b139321
10 changed files with 26 additions and 28 deletions

View File

@@ -108,7 +108,7 @@ int main(int argc, const char *argv[])
// state scope
{
boost::scoped_ptr<MenuState> menuState(new MenuState);
std::unique_ptr<MenuState> menuState(new MenuState);
g_engine.changeState(menuState.get());
Platform::showWindow();