summaryrefslogtreecommitdiff
path: root/include/sot/storage.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-07 10:39:08 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-07 11:05:06 +0200
commit79d853e31826c9e8b7e86bf90e5c1f9b7dd0c43a (patch)
tree1a31680f6666a046ee676040718a37816b4005f4 /include/sot/storage.hxx
parent8a91528a3e03fe6e2923c33327b687ecf57adb0b (diff)
StorageMode::DiskspannedMode is effectively unused
Change-Id: I977b0a51a609d3cbc30abd308715f91cad2cfdfa
Diffstat (limited to 'include/sot/storage.hxx')
-rw-r--r--include/sot/storage.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/sot/storage.hxx b/include/sot/storage.hxx
index 2acbc07c8cbb..a97fa80550c7 100644
--- a/include/sot/storage.hxx
+++ b/include/sot/storage.hxx
@@ -35,13 +35,12 @@
enum class StorageMode {
Default = 0,
- Transacted = 0x04,
- DiskspannedMode = 0x80
+ Transacted = 0x04
};
namespace o3tl {
-template<> struct typed_flags<StorageMode>: is_typed_flags<StorageMode, 0x84>
+template<> struct typed_flags<StorageMode>: is_typed_flags<StorageMode, 0x04>
{};
}