Skip to content

Commit 9d1946b

Browse files
Fix formatting
1 parent d8576b9 commit 9d1946b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/datadog/platform_util.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,8 +375,9 @@ Optional<std::string> find_container_id(std::istream& source) {
375375
source.clear();
376376
source.seekg(0);
377377

378-
// Perform a second pass using a regular expression for matching container IDs in a Fargate environment.
379-
// This two-step approach is used because STL `regex` is relatively slow, so we avoid using it unless necessary.
378+
// Perform a second pass using a regular expression for matching container IDs
379+
// in a Fargate environment. This two-step approach is used because STL
380+
// `regex` is relatively slow, so we avoid using it unless necessary.
380381
static const std::string uuid_regex_str =
381382
"[0-9a-f]{8}[-_][0-9a-f]{4}[-_][0-9a-f]{4}[-_][0-9a-f]{4}[-_][0-9a-f]{12}"
382383
"|(?:[0-9a-f]{8}(?:-[0-9a-f]{4}){4}$)";

0 commit comments

Comments
 (0)