Skip to content
Open
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/Generator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ std::string halide_type_to_c_type(const Type &t) {
{encode(Float(16)), "uint16_t"}, // TODO: see Issues #3709, #3967
{encode(Float(32)), "float"},
{encode(Float(64)), "double"},
{encode(Handle(64)), "void*"}};

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually we're going to delete this constructor, too.

{encode(Handle()), "void*"}};
internal_assert(m.count(encode(t))) << t << " " << encode(t);
return m.at(encode(t));
}
Expand Down
Loading