Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ab37b7c

Browse files
committedMay 19, 2025·
[lib][libutil] fix size_t issue
1 parent 6aa559f commit ab37b7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎libs/libvtrutil/src/vtr_logic.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ enum class LogicValue {
3131
NUM_LOGIC_VALUE_TYPES
3232
};
3333

34-
constexpr std::array<const char*, size_t(LogicValue::NUM_LOGIC_VALUE_TYPES)> LOGIC_VALUE_STRING = {{"false", "true", "don't care", "unknown"}};
34+
constexpr std::array<const char*, std::size_t(LogicValue::NUM_LOGIC_VALUE_TYPES)> LOGIC_VALUE_STRING = {{"false", "true", "don't care", "unknown"}};
3535

3636
} // namespace vtr
3737

0 commit comments

Comments
 (0)
Please sign in to comment.