diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:12:17 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:12:17 +0200 |
commit | b654dbfa5f3e4a4d02f72023f7c5895635aa6396 (patch) | |
tree | 8c1dfe7f638c0fc7afc1d08bc2fc0fd0f8646e5e /shared/shadow.h | |
parent | 3.17 (diff) | |
download | FreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.tar.gz FreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.tar.bz2 FreeFileSync-b654dbfa5f3e4a4d02f72023f7c5895635aa6396.zip |
3.18
Diffstat (limited to 'shared/shadow.h')
-rw-r--r-- | shared/shadow.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/shadow.h b/shared/shadow.h index b122e59d..05748fd7 100644 --- a/shared/shadow.h +++ b/shared/shadow.h @@ -14,7 +14,7 @@ use in windows build only! #include "zstring.h" #include "file_error.h" #include <map> -#include <boost/shared_ptr.hpp> +#include <memory> namespace shadow @@ -41,7 +41,7 @@ private: WaitingForShadow* callback_; class ShadowVolume; - typedef std::map<Zstring, boost::shared_ptr<ShadowVolume>, LessFilename> VolNameShadowMap; + typedef std::map<Zstring, std::shared_ptr<ShadowVolume>, LessFilename> VolNameShadowMap; VolNameShadowMap shadowVol; }; } |