[lldb] [llvm] [lldb][telemetry] Implement LLDB Telemetry (part 1) (PR #119716)
Pavel Labath via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 20 06:13:19 PST 2024
================
@@ -0,0 +1,101 @@
+//===-- Telemetry.h ----------------------------------------------*- C++
+//-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLDB_CORE_TELEMETRY_H
+#define LLDB_CORE_TELEMETRY_H
+
+#include <chrono>
----------------
labath wrote:
This isn't the order we [use in llvm](https://llvm.org/docs/CodingStandards.html#include-style). Just remove the blank lines and let clang-format order it for you.
https://github.com/llvm/llvm-project/pull/119716
More information about the llvm-commits
mailing list