Skip to content

Commit 4e0bd85

Browse files
committed
update
1 parent 274719c commit 4e0bd85

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cssom/om.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ void sheet::write(
355355
property_value_to_string
356356
);
357357

358-
papki::file::guard file_guard(fi, papki::file::mode::create);
358+
papki::file::guard file_guard(fi, papki::mode::create);
359359

360360
for (auto i = styles_to_save.begin(); i != styles_to_save.end(); ++i) {
361361
// Go through selector chains which refer to the same property set (selectors in the same selector group).

tests/unit/samples.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ const tst::set set("samples", [](tst::suite& suite){
9191
papki::fs_file failed_file(data_dir + p + ".out");
9292
papki::file::guard file_guard(
9393
failed_file,//
94-
papki::file::mode::create
94+
papki::mode::create
9595
);
9696
failed_file.write(out_data);
9797
}

0 commit comments

Comments
 (0)