diff --git a/src/Mod/Sandbox/Gui/Command.cpp b/src/Mod/Sandbox/Gui/Command.cpp index 4d87161358..54e75cc0ad 100644 --- a/src/Mod/Sandbox/Gui/Command.cpp +++ b/src/Mod/Sandbox/Gui/Command.cpp @@ -56,7 +56,7 @@ # include # include # include -# include +# include #endif #include @@ -885,12 +885,12 @@ CmdSandboxMeshTestRef::CmdSandboxMeshTestRef() void CmdSandboxMeshTestRef::activated(int) { Gui::WaitCursor wc; - std::vector< boost::shared_ptr > threads; + std::vector< std::shared_ptr > threads; Base::Reference mesh(new Mesh::MeshObject); int num = mesh.getRefCount(); for (int i=0; i<10; i++) { - boost::shared_ptr trd(new MeshThread(mesh)); + std::shared_ptr trd(new MeshThread(mesh)); trd->start(); threads.push_back(trd); }