0
在boost multiindex示例complex_structs中,它在car_table的car_manufacturer結構中使用了一個鍵。 如果car_manufacturer已經修改有2個IDBoost multiindex complex struct
struct car_manufacturer {
std::string name;
int cm_code;
car_manufacturer(const std::string& name_, const int& cm_code_):name(name_), cm_code(cm_code_){}
};
會是怎樣的key_from_key結構樣子?嘗試添加另一個KeyExtractor或在key_from_key中使用組合索引,但仍無法編譯。
請幫忙。謝謝。