25 lines
616 B
Diff
25 lines
616 B
Diff
From f22ee023ad92b34697c743936451731c0ad4dbb6 Mon Sep 17 00:00:00 2001
|
|
From: liuqinfei <18138800392@163.com>
|
|
Date: Thu, 30 Dec 2021 09:46:33 +0800
|
|
Subject: [PATCH] fix error: 'transform' is not a member of 'std'
|
|
|
|
---
|
|
src/common/Formatter.cc | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/common/Formatter.cc b/src/common/Formatter.cc
|
|
index 362deffb5ab..4e9838e3a36 100644
|
|
--- a/src/common/Formatter.cc
|
|
+++ b/src/common/Formatter.cc
|
|
@@ -18,6 +18,7 @@
|
|
#include "common/escape.h"
|
|
#include "include/buffer.h"
|
|
|
|
+#include <algorithm>
|
|
#include <fmt/format.h>
|
|
#include <algorithm>
|
|
#include <set>
|
|
--
|
|
2.30.0
|
|
|