summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorFrancesco Borzì <borzifrancesco@gmail.com>2024-11-01 08:42:31 +0100
committerGitHub <noreply@github.com>2024-11-01 08:42:31 +0100
commit4dcaee181654a7e0250d18c2308f8a5f4d68f32a (patch)
treed27f325f5fa6828820448a50fc0e33eb1923c348 /src/common
parent55fe00120fc9579aa2de34faa0c3407a2aa454c6 (diff)
refactor(src/common|server): remove unused import (big part 2) (#20388)
Diffstat (limited to 'src/common')
-rw-r--r--src/common/Logging/AppenderFile.h2
-rw-r--r--src/common/Metric/Metric.h2
-rw-r--r--src/common/Utilities/IteratorPair.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/common/Logging/AppenderFile.h b/src/common/Logging/AppenderFile.h
index 38b21065a8..95a990d63b 100644
--- a/src/common/Logging/AppenderFile.h
+++ b/src/common/Logging/AppenderFile.h
@@ -19,7 +19,7 @@
#define APPENDERFILE_H
#include "Appender.h"
-#include <atomic>
+#include <atomic> // NOTE: this import is NEEDED (even though some IDEs report it as unused)
#include <vector>
class AppenderFile : public Appender
diff --git a/src/common/Metric/Metric.h b/src/common/Metric/Metric.h
index fda4048d6a..eca14f52c8 100644
--- a/src/common/Metric/Metric.h
+++ b/src/common/Metric/Metric.h
@@ -22,7 +22,7 @@
#include "Duration.h"
#include "MPSCQueue.h"
#include <functional>
-#include <memory>
+#include <memory> // NOTE: this import is NEEDED (even though some IDEs report it as unused)
#include <string>
#include <unordered_map>
#include <vector>
diff --git a/src/common/Utilities/IteratorPair.h b/src/common/Utilities/IteratorPair.h
index 8128da4fd1..9ecef39e6f 100644
--- a/src/common/Utilities/IteratorPair.h
+++ b/src/common/Utilities/IteratorPair.h
@@ -18,7 +18,7 @@
#ifndef IteratorPair_h__
#define IteratorPair_h__
-#include <vector>
+#include <vector> // NOTE: this import is NEEDED (even though some IDEs report it as unused)
namespace Acore
{