From ea17fa6215536bb118acb75651d70cce4f82e8b5 Mon Sep 17 00:00:00 2001 From: David Luposchainsky Date: Fri, 26 Apr 2024 19:14:55 +0200 Subject: [PATCH] =?UTF-8?q?Rename=20`aux`=20directory=20to=20`misc`=20[?= =?UTF-8?q?=E2=80=A6]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit According to the ticket, this causes issues on Windows, where `aux` is a reserved file name. The .h file contained is duplicated multiple times over the repo inside `misc` folders, so it makes sense to adopt this name here as well. Resolves https://github.com/quchen/prettyprinter/issues/252 --- .hlint.yaml | 2 +- {aux => misc}/flowchart | 0 {aux => misc}/version-compatibility-macros.h | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename {aux => misc}/flowchart (100%) rename {aux => misc}/version-compatibility-macros.h (100%) diff --git a/.hlint.yaml b/.hlint.yaml index b105cab6..ef33df3c 100644 --- a/.hlint.yaml +++ b/.hlint.yaml @@ -1,5 +1,5 @@ - arguments: - - --cpp-include=aux + - --cpp-include=misc - --cpp-define=MIN_VERSION_base=1 diff --git a/aux/flowchart b/misc/flowchart similarity index 100% rename from aux/flowchart rename to misc/flowchart diff --git a/aux/version-compatibility-macros.h b/misc/version-compatibility-macros.h similarity index 100% rename from aux/version-compatibility-macros.h rename to misc/version-compatibility-macros.h