[Lldb-commits] [lldb] [lldb][AIX] HostInfoAIX Support (PR #117906)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 27 23:19:20 PST 2024
================
@@ -0,0 +1,43 @@
+//===-- HostInfoAIX.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_HOST_AIX_HOSTINFOAIX_H_
+#define LLDB_HOST_AIX_HOSTINFOAIX_H_
+
+#include "lldb/Host/posix/HostInfoPosix.h"
+#include "lldb/Utility/FileSpec.h"
+#include "llvm/ADT/StringRef.h"
+#include "llvm/Support/VersionTuple.h"
+
+#include <optional>
+#include <string>
----------------
labath wrote:
```suggestion
#include "lldb/Host/posix/HostInfoPosix.h"
#include "lldb/Utility/FileSpec.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/VersionTuple.h"
#include <optional>
#include <string>
```
LLVM style doesn't put empty lines between includes. LLDB did not do that historically, but let's not propagate that into the new files.
https://github.com/llvm/llvm-project/pull/117906
More information about the lldb-commits
mailing list