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 hwcpipe/include/hwcpipe/detail/internal_types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ struct block_offset {
*/
struct counter_definition {
enum class type { invalid, hardware, expression };
type tag;
union u {
block_offset address{};
expression::expression_definition expression;
Expand All @@ -104,7 +105,6 @@ struct counter_definition {
explicit u(block_offset address)
: address(address) {}
} u;
type tag;

counter_definition()
: tag(type::invalid)
Expand Down