0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-09 05:29:00 +02:00

ircd::db: Remove unnecessary default to O_DIRECT.

This commit is contained in:
Jason Volk 2018-09-03 07:48:23 -07:00
parent 915bdaa0ee
commit 80d0db9f26

View file

@ -4448,7 +4448,6 @@ decltype(ircd::db::database::env::random_access_file::default_opts)
ircd::db::database::env::random_access_file::default_opts{[]
{
ircd::fs::fd::opts ret{std::ios_base::in};
ret.direct = true;
return ret;
}()};