diff options
author | Johannes Schickel | 2016-01-07 10:53:28 +0100 |
---|---|---|
committer | Johannes Schickel | 2016-01-07 10:53:28 +0100 |
commit | adaa1bcd8f727da1060a3a5261520563ca6905aa (patch) | |
tree | fea896ff5630fa1f3b655608d19078e4abc4fdaf | |
parent | d13300ca22663af77cb454ab536f4599d0eb772b (diff) | |
download | scummvm-rg350-adaa1bcd8f727da1060a3a5261520563ca6905aa.tar.gz scummvm-rg350-adaa1bcd8f727da1060a3a5261520563ca6905aa.tar.bz2 scummvm-rg350-adaa1bcd8f727da1060a3a5261520563ca6905aa.zip |
BACKENDS: Move FIXME closer to ChRootFilesystemFactory.
-rw-r--r-- | backends/fs/chroot/chroot-fs-factory.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/backends/fs/chroot/chroot-fs-factory.h b/backends/fs/chroot/chroot-fs-factory.h index 23b3c8f44a..49101918ce 100644 --- a/backends/fs/chroot/chroot-fs-factory.h +++ b/backends/fs/chroot/chroot-fs-factory.h @@ -20,15 +20,17 @@ * */ -/* - * FIXME: Warning, using this factory in your backend may silently breaks some features. Instances are, for example, the FluidSynth code, and the POSIX plugin code. - */ #ifndef BACKENDS_FS_CHROOT_CHROOT_FS_FACTORY_H #define BACKENDS_FS_CHROOT_CHROOT_FS_FACTORY_H #include "backends/fs/fs-factory.h" +/** + * FIXME: Warning, using this factory in your backend may silently break some + * features. Instances are, for example, the FluidSynth code, and the POSIX + * plugin code. + */ class ChRootFilesystemFactory : public FilesystemFactory { private: Common::String _root; |