summaryrefslogtreecommitdiff
path: root/src/database/database.hpp
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2018-03-17 17:28:47 +0100
committerlouiz’ <louiz@louiz.org>2018-03-17 17:28:47 +0100
commit03714c6cebf90dc7db8e3997a18cdd19e039c667 (patch)
treec7f32136db1a40492f18cbd635a1bab761d14ced /src/database/database.hpp
parentd0e3c71b91f1a1c1780158789fd42b8ac7209495 (diff)
downloadbiboumi-03714c6cebf90dc7db8e3997a18cdd19e039c667.tar.gz
biboumi-03714c6cebf90dc7db8e3997a18cdd19e039c667.tar.bz2
biboumi-03714c6cebf90dc7db8e3997a18cdd19e039c667.tar.xz
biboumi-03714c6cebf90dc7db8e3997a18cdd19e039c667.zip
Revert "Use std::optional<bool> instead of OptionalBool"
This reverts commit ba879a882e031d7b8503f78fe41d1210000c96ca.
Diffstat (limited to 'src/database/database.hpp')
-rw-r--r--src/database/database.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/database.hpp b/src/database/database.hpp
index 03d82ae..8a967d8 100644
--- a/src/database/database.hpp
+++ b/src/database/database.hpp
@@ -69,7 +69,7 @@ class Database
struct RecordHistory: Column<bool> { static constexpr auto name = "recordhistory_";
RecordHistory(): Column<bool>(true) {}};
- struct RecordHistoryOptional: Column<std::optional<bool>> { static constexpr auto name = "recordhistory_"; };
+ struct RecordHistoryOptional: Column<OptionalBool> { static constexpr auto name = "recordhistory_"; };
struct VerifyCert: Column<bool> { static constexpr auto name = "verifycert_";
VerifyCert(): Column<bool>(true) {} };