Skip to content

Commit

Permalink
ios build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
igagis committed Mar 3, 2024
1 parent a0a45ec commit 6d130b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ruisapp/glue/ios/glue.mm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "../../application.hpp"

#include <papki/fs_file.hpp>
#include <papki/root_dir_file.hpp>
#include <papki/root_dir.hpp>

#include <sstream>

Expand Down Expand Up @@ -353,8 +353,8 @@ - (void)touchesCancelled:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{

// TRACE(<< "res path = " << dir << std::endl)

auto rdf = std::make_unique<papki::root_dir_file>(std::make_unique<papki::fs_file>(), dir + "/");
rdf->setPath(path);
auto rdf = std::make_unique<papki::root_dir>(std::make_unique<papki::fs_file>(), dir + "/");
rdf->set_path(path);

return std::move(rdf);
}
Expand Down

0 comments on commit 6d130b7

Please sign in to comment.