summaryrefslogtreecommitdiff
path: root/netfs/fuse
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2016-01-18 21:41:57 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2016-01-18 21:41:57 +0000
commitc4e834a8a7801e9bddca15807f09fe73673e26e8 (patch)
tree6b56e8a7d7e9e31e1738fc16a97abd91b22b9f87 /netfs/fuse
parentUse path's own c_str, no need to string it first (diff)
downloadnetfs-c4e834a8a7801e9bddca15807f09fe73673e26e8.tar.bz2
netfs-c4e834a8a7801e9bddca15807f09fe73673e26e8.tar.xz
netfs-c4e834a8a7801e9bddca15807f09fe73673e26e8.zip
Remove straggling use of Slicer::Deserialize in favour of more flexible DeserializeAny
Diffstat (limited to 'netfs/fuse')
-rw-r--r--netfs/fuse/fuseApp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/netfs/fuse/fuseApp.cpp b/netfs/fuse/fuseApp.cpp
index d05bcc0..cd55574 100644
--- a/netfs/fuse/fuseApp.cpp
+++ b/netfs/fuse/fuseApp.cpp
@@ -63,7 +63,7 @@ NetFS::FuseApp::~FuseApp()
NetFS::Client::ConfigurationPtr
NetFS::FuseApp::ReadConfiguration(const std::string & path) const
{
- return Slicer::Deserialize<Slicer::XmlFileDeserializer, NetFS::Client::Configuration>(path);
+ return Slicer::DeserializeAny<Slicer::XmlFileDeserializer, NetFS::Client::ConfigurationPtr>(path);
}
void *