aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2023-03-01 17:45:41 +0100
committerGitHub <noreply@github.com>2023-03-01 17:45:41 +0100
commitd17de6e8eae213f9e71c7fddb5b3876ff1d0a58b (patch)
tree0331b3ff6698c8a08892f627ec1ff7f335ffa946 /storage/src
parent7812f8fea31fcbb5ae636f27e05ae8d3ba485c97 (diff)
parentf78e5a0a44d6edf3d0c0da20b412a499140a6607 (diff)
Merge pull request #26253 from vespa-engine/balder/use-typesafe-time-in-vespalog
Use typesafe time in vespalog
Diffstat (limited to 'storage/src')
-rw-r--r--storage/src/vespa/storage/distributor/messagetracker.cpp1
-rw-r--r--storage/src/vespa/storage/distributor/operations/external/twophaseupdateoperation.cpp2
-rw-r--r--storage/src/vespa/storage/distributor/sentmessagemap.cpp1
-rw-r--r--storage/src/vespa/storageframework/defaultimplementation/thread/threadimpl.cpp1
4 files changed, 4 insertions, 1 deletions
diff --git a/storage/src/vespa/storage/distributor/messagetracker.cpp b/storage/src/vespa/storage/distributor/messagetracker.cpp
index 93db31bdc29..8830e5ecabc 100644
--- a/storage/src/vespa/storage/distributor/messagetracker.cpp
+++ b/storage/src/vespa/storage/distributor/messagetracker.cpp
@@ -3,6 +3,7 @@
#include "messagetracker.h"
#include <vespa/storageapi/messageapi/bucketcommand.h>
#include <vespa/storageapi/messageapi/bucketreply.h>
+#include <cinttypes>
#include <vespa/log/log.h>
LOG_SETUP(".messagetracker");
diff --git a/storage/src/vespa/storage/distributor/operations/external/twophaseupdateoperation.cpp b/storage/src/vespa/storage/distributor/operations/external/twophaseupdateoperation.cpp
index 55fe2e039e1..bdf4fa2ba72 100644
--- a/storage/src/vespa/storage/distributor/operations/external/twophaseupdateoperation.cpp
+++ b/storage/src/vespa/storage/distributor/operations/external/twophaseupdateoperation.cpp
@@ -12,7 +12,7 @@
#include <vespa/storage/distributor/distributor_bucket_space_repo.h>
#include <vespa/storageapi/message/persistence.h>
#include <vespa/vdslib/state/cluster_state_bundle.h>
-#include <vespa/vespalib/stllike/hash_map.hpp>
+#include <cinttypes>
#include <vespa/log/log.h>
LOG_SETUP(".distributor.callback.twophaseupdate");
diff --git a/storage/src/vespa/storage/distributor/sentmessagemap.cpp b/storage/src/vespa/storage/distributor/sentmessagemap.cpp
index 44dd4fbde89..4b7292c1e81 100644
--- a/storage/src/vespa/storage/distributor/sentmessagemap.cpp
+++ b/storage/src/vespa/storage/distributor/sentmessagemap.cpp
@@ -4,6 +4,7 @@
#include <vespa/storage/distributor/operations/operation.h>
#include <sstream>
#include <set>
+#include <cinttypes>
#include <vespa/log/log.h>
LOG_SETUP(".distributor.callback.map");
diff --git a/storage/src/vespa/storageframework/defaultimplementation/thread/threadimpl.cpp b/storage/src/vespa/storageframework/defaultimplementation/thread/threadimpl.cpp
index 314434a4c1a..c1fa2aac708 100644
--- a/storage/src/vespa/storageframework/defaultimplementation/thread/threadimpl.cpp
+++ b/storage/src/vespa/storageframework/defaultimplementation/thread/threadimpl.cpp
@@ -5,6 +5,7 @@
#include <vespa/storageframework/generic/clock/clock.h>
#include <vespa/vespalib/util/atomic.h>
#include <vespa/vespalib/util/signalhandler.h>
+#include <cinttypes>
#include <vespa/log/bufferedlogger.h>
LOG_SETUP(".framework.thread.impl");