Database: ::commit propagates to Datafile

This commit is contained in:
Paul Beckingham 2016-03-20 17:06:36 -04:00
parent bf068ad00a
commit fc3ca8d7d3

View file

@ -65,6 +65,8 @@ void Database::commit ()
{ {
if (_dirty) if (_dirty)
{ {
for (auto& file : _files)
file.commit ();
_dirty = false; _dirty = false;
} }