Eric Wong

Results 3 issues of Eric Wong

/// swaps the contents void swap(fifo_map& other) { std::swap(m_map, other.m_map); std::swap(m_compare, other.m_compare); std::swap(m_keys, other.m_keys); } m_compare‘s member m_key point to m_map's m_key

如下图添加测试代码。 ![image](https://user-images.githubusercontent.com/3361974/210042762-45ca75a6-616f-49c3-a723-a1fd4f62836c.png) 程序启动后默认的位置不对(正常应该显示在屏幕的中间) ![image](https://user-images.githubusercontent.com/3361974/210045210-ab5dd0c8-a53f-4718-8cf5-8582514352e8.png)

本意是不想使用用户设置的边框颜色,想通过样式给窗口绘制指定颜色的边框。

question