Skip to content

Commit

Permalink
Default View's blob array ctor argument
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber committed Dec 5, 2022
1 parent 95f0895 commit 5c430f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/llama/View.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ namespace llama
View() = default;

LLAMA_FN_HOST_ACC_INLINE
View(Mapping mapping, Array<BlobType, Mapping::blobCount> storageBlobs, Accessor accessor = {})
View(Mapping mapping, Array<BlobType, Mapping::blobCount> storageBlobs = {}, Accessor accessor = {})
: Mapping(std::move(mapping))
, Accessor(std::move(accessor))
, storageBlobs(std::move(storageBlobs))
Expand Down

0 comments on commit 5c430f6

Please sign in to comment.