Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/runtime/d_array.h
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ namespace sqf
bool check_type(sqf::runtime::runtime& runtime, const std::array<sqf::runtime::type, size>& arr) const { return check_type(runtime, arr.data(), size, size); }
bool check_type(sqf::runtime::runtime& runtime, const std::vector<sqf::runtime::type>& vec) const { return check_type(runtime, vec.data(), vec.size(), vec.size()); }
template<size_t size>
bool check_type(sqf::runtime::runtime& runtime, const std::array<sqf::runtime::type, size>& arr, size_t optionalstart) const { return check_type(runtime, arr.data(), size, optionalstart); }
bool check_type(sqf::runtime::runtime& runtime, const std::array<sqf::runtime::type, size>& arr, size_t optionalstart) const { return check_type(runtime, arr.data(), optionalstart, size); }
};
template<>
inline std::shared_ptr<sqf::runtime::data> to_data<std::vector<sqf::runtime::value>>(std::vector<sqf::runtime::value> arr)
Expand Down