switched to unique_ptr due to expected app main use

This commit is contained in:
Jack Andersen
2015-08-18 12:50:52 -10:00
parent 87ab129e01
commit 2c2991d44e
3 changed files with 15 additions and 16 deletions

View File

@@ -137,7 +137,7 @@ struct TestApplicationCallback : IApplicationCallback
int main(int argc, const char** argv)
{
boo::TestApplicationCallback appCb;
std::shared_ptr<boo::IApplication> app =
std::unique_ptr<boo::IApplication> app =
ApplicationBootstrap(boo::IApplication::PLAT_AUTO,
appCb, "rwk", "RWK", argc, argv);
app->run();