bug fixing to constant string to display interconnect names
This commit is contained in:
parent
ff7ea99381
commit
dd4f83a374
|
@ -166,7 +166,7 @@ enum e_interconnect {
|
||||||
NUM_INTERC_TYPES /* Xifan Tang - Invalid types for interconnect */
|
NUM_INTERC_TYPES /* Xifan Tang - Invalid types for interconnect */
|
||||||
};
|
};
|
||||||
/* Xifan Tang - String versions of interconnection type */
|
/* Xifan Tang - String versions of interconnection type */
|
||||||
constexpr std::array<const char*, NUM_INTERC_TYPES> INTERCONNECT_TYPE_STRING = {{"complete", "direct", "mux"}};
|
constexpr std::array<const char*, NUM_INTERC_TYPES> INTERCONNECT_TYPE_STRING = {{"unknown", "complete", "direct", "mux"}};
|
||||||
|
|
||||||
/* Orientations. */
|
/* Orientations. */
|
||||||
enum e_side : unsigned char {
|
enum e_side : unsigned char {
|
||||||
|
|
Loading…
Reference in New Issue