aboutsummaryrefslogtreecommitdiff
path: root/src/zencompute/include
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2026-04-13 19:17:09 +0200
committerGitHub Enterprise <[email protected]>2026-04-13 19:17:09 +0200
commit3d59b5d7036c35fe484d052ff32dbdc9d0a75cf7 (patch)
tree8d24babc8cd3d097800af0bd960c7ba1d72927d7 /src/zencompute/include
parentuse mimalloc by default (#952) (diff)
downloadarchived-zen-3d59b5d7036c35fe484d052ff32dbdc9d0a75cf7.tar.xz
archived-zen-3d59b5d7036c35fe484d052ff32dbdc9d0a75cf7.zip
fix utf characters in source code (#953)
Diffstat (limited to 'src/zencompute/include')
-rw-r--r--src/zencompute/include/zencompute/cloudmetadata.h2
-rw-r--r--src/zencompute/include/zencompute/httporchestrator.h4
-rw-r--r--src/zencompute/include/zencompute/mockimds.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/zencompute/include/zencompute/cloudmetadata.h b/src/zencompute/include/zencompute/cloudmetadata.h
index 3b9642ac3..280d794e7 100644
--- a/src/zencompute/include/zencompute/cloudmetadata.h
+++ b/src/zencompute/include/zencompute/cloudmetadata.h
@@ -64,7 +64,7 @@ public:
explicit CloudMetadata(std::filesystem::path DataDir);
/** Synchronously probes cloud providers at the given IMDS endpoint.
- * Intended for testing — allows redirecting all IMDS queries to a local
+ * Intended for testing - allows redirecting all IMDS queries to a local
* mock HTTP server instead of the real 169.254.169.254 endpoint.
*/
CloudMetadata(std::filesystem::path DataDir, std::string ImdsEndpoint);
diff --git a/src/zencompute/include/zencompute/httporchestrator.h b/src/zencompute/include/zencompute/httporchestrator.h
index ef0a1269a..4e4f5f0f8 100644
--- a/src/zencompute/include/zencompute/httporchestrator.h
+++ b/src/zencompute/include/zencompute/httporchestrator.h
@@ -108,9 +108,9 @@ private:
Event m_PushEvent;
void PushThreadFunction();
- // Worker WebSocket connections (worker→orchestrator persistent links)
+ // Worker WebSocket connections (worker->orchestrator persistent links)
RwLock m_WorkerWsLock;
- std::unordered_map<WebSocketConnection*, std::string> m_WorkerWsMap; // connection ptr → worker ID
+ std::unordered_map<WebSocketConnection*, std::string> m_WorkerWsMap; // connection ptr -> worker ID
std::string HandleWorkerWebSocketMessage(const WebSocketMessage& Msg);
#endif
};
diff --git a/src/zencompute/include/zencompute/mockimds.h b/src/zencompute/include/zencompute/mockimds.h
index 704306913..6074240b9 100644
--- a/src/zencompute/include/zencompute/mockimds.h
+++ b/src/zencompute/include/zencompute/mockimds.h
@@ -1,5 +1,5 @@
// Copyright Epic Games, Inc. All Rights Reserved.
-// Moved to zenutil — this header is kept for backward compatibility.
+// Moved to zenutil - this header is kept for backward compatibility.
#pragma once