Skip to content

Commit

Permalink
same signature
Browse files Browse the repository at this point in the history
  • Loading branch information
hannojg authored and mrousavy committed Feb 22, 2024
1 parent 43533ad commit c26d56d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package/ios/src/AppleFilamentProxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class AppleFilamentProxy : public FilamentProxy {
~AppleFilamentProxy();

public:
int loadModel(const std::string path) override;
int loadModel(std::string path) override;

private:
jsi::Runtime* _runtime;
Expand Down
2 changes: 1 addition & 1 deletion package/ios/src/AppleFilamentProxy.mm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// TODO(hanno): cleanup here?
}

int AppleFilamentProxy::loadModel(const std::string path) {
int AppleFilamentProxy::loadModel(std::string path) {
// TODO(hanno): Implement model loading here
return 13;
}
Expand Down

0 comments on commit c26d56d

Please sign in to comment.