summaryrefslogtreecommitdiff
path: root/shared/shadow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'shared/shadow.cpp')
-rw-r--r--shared/shadow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/shadow.cpp b/shared/shadow.cpp
index 52ffefc7..5827badd 100644
--- a/shared/shadow.cpp
+++ b/shared/shadow.cpp
@@ -192,7 +192,7 @@ Zstring ShadowCopy::makeShadowCopy(const Zstring& inputFile)
VolNameShadowMap::const_iterator iter = shadowVol.find(volumeNameFormatted);
if (iter == shadowVol.end())
{
- boost::shared_ptr<ShadowVolume> newEntry(new ShadowVolume(volumeNameFormatted));
+ std::shared_ptr<ShadowVolume> newEntry(new ShadowVolume(volumeNameFormatted));
iter = shadowVol.insert(std::make_pair(volumeNameFormatted, newEntry)).first;
}
bgstack15