Skip to content

Commit

Permalink
Merge branch 'main' into remove-needless-template-param
Browse files Browse the repository at this point in the history
  • Loading branch information
mjp41 authored Jun 12, 2024
2 parents 9b38809 + 6aa23cf commit fd4142c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/rt/cpp/when.h
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,10 @@ namespace verona::cpp
struct is_read_only : std::false_type
{};
template<class T>
struct is_read_only<Access<const T>> : std::true_type
struct is_read_only<Access<const T>&> : std::true_type
{};
template<class T>
struct is_read_only<AccessBatch<const T>&> : std::true_type
{};

template<class T>
Expand Down

0 comments on commit fd4142c

Please sign in to comment.