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 include/svs/lib/misc.h
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ template <typename... Fs> class Lazy : public Fs... {
using Fs::operator()...;
};

#define SVS_LAZY(expr) svs::lib::Lazy([=]() { return expr; })
#define SVS_LAZY(expr) svs::lib::Lazy([&]() { return expr; })

template <typename T> inline constexpr bool is_lazy = false;
template <typename... Fs> inline constexpr bool is_lazy<Lazy<Fs...>> = true;
Expand Down
Loading