Compatibility with GCC 6

This commit is contained in:
Sebastian Messmer 2016-06-26 21:26:08 -07:00
parent 0a61987594
commit f4a7878e37
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ Fixed Bugs:
Improvements: Improvements:
* When mounting an old file system, CryFS will ask before migrating it to the newest version. * When mounting an old file system, CryFS will ask before migrating it to the newest version.
* Operating system tools like the mount command or /proc/self/mountinfo report correct file system type and also report the base directory. * Operating system tools like the mount command or /proc/self/mountinfo report correct file system type and also report the base directory.
* Compatibility with GCC 6
Version 0.9.4 Version 0.9.4
--------------- ---------------

View File

@ -7,10 +7,10 @@
#include <mutex> #include <mutex>
#include <unordered_map> #include <unordered_map>
#include "InMemoryBlock.h"
namespace blockstore { namespace blockstore {
namespace inmemory { namespace inmemory {
class InMemoryBlock;
class InMemoryBlockStore final: public BlockStoreWithRandomKeys { class InMemoryBlockStore final: public BlockStoreWithRandomKeys {
public: public: