사진처럼 cmp_str부분에서 const-volatile한정자가 손실된다는데 무슨 오류인가요오
struct cmp_str { bool operator()(char const *a, char const *b) { return strcmp(a, b) < 0; } };
struct cmp_str { bool operator()(char const * const a, char const * const b) const { return strcmp(a, b) < 0; } };
이렇게 고치세요