aboutsummaryrefslogtreecommitdiff
path: root/common/fs.h
diff options
context:
space:
mode:
authorJohannes Schickel2008-01-03 14:51:50 +0000
committerJohannes Schickel2008-01-03 14:51:50 +0000
commitbfb7a7e7e66f0d65861306311d5f73a26d397c71 (patch)
tree041856e220f93445bd11cf7e96085ba9db6e5b67 /common/fs.h
parent58f0d4e632793ac9e38f5c0596626eba1173748d (diff)
downloadscummvm-rg350-bfb7a7e7e66f0d65861306311d5f73a26d397c71.tar.gz
scummvm-rg350-bfb7a7e7e66f0d65861306311d5f73a26d397c71.tar.bz2
scummvm-rg350-bfb7a7e7e66f0d65861306311d5f73a26d397c71.zip
Don't allow implicit conversion from Common::String to Common::FilesystemNode.
svn-id: r30199
Diffstat (limited to 'common/fs.h')
-rw-r--r--common/fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/fs.h b/common/fs.h
index 271a0dc9eb..b120a583db 100644
--- a/common/fs.h
+++ b/common/fs.h
@@ -97,7 +97,7 @@ public:
* operating system doesn't support the concept), some other directory is
* used (usually the root directory).
*/
- FilesystemNode(const Common::String &path);
+ explicit FilesystemNode(const Common::String &path);
/**
* Copy constructor.