mirror of
https://github.com/m1ngsama/TUT.git
synced 2025-12-24 10:51:46 +00:00
fix: Add missing memory headers for unique_ptr
All headers using std::unique_ptr now explicitly include <memory>
This commit is contained in:
parent
6564f23707
commit
818f5ddc5e
2 changed files with 2 additions and 0 deletions
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
enum class InputMode {
|
enum class InputMode {
|
||||||
NORMAL, // 正常浏览模式
|
NORMAL, // 正常浏览模式
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
#include "html_parser.h"
|
#include "html_parser.h"
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <memory>
|
||||||
#include <curses.h>
|
#include <curses.h>
|
||||||
|
|
||||||
// 渲染后的行信息
|
// 渲染后的行信息
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue