Skip to content
Snippets Groups Projects
Commit ba03d317 authored by Mike Kremer's avatar Mike Kremer
Browse files

Avoid unused parameter warning.

git-svn-id: http://www.openvolumemesh.org/svnrepo/OpenVolumeMesh/trunk@129 66977474-1d4b-4f09-8fe9-267525286df2
parent ca62efce
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,7 @@ namespace OpenVolumeMesh {
template <class PropT, class HandleT>
PropertyPtr<PropT,HandleT>::PropertyPtr(PropT* _ptr, ResourceManager& _resMan, HandleT _handle) :
ptr::shared_ptr<PropT>(_ptr), BaseProperty(_resMan) {
ptr::shared_ptr<PropT>::get()->set_handle(_handle);
}
template <class PropT, class HandleT>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment