diff --git a/.github/DockerClang b/.github/DockerClang index 7d48222..eb66f7d 100644 --- a/.github/DockerClang +++ b/.github/DockerClang @@ -6,8 +6,6 @@ FROM ubuntu:latest #git clone -b p2996 https://github.com/bloomberg/clang-p2996.git && \ WORKDIR / RUN apt-get update -RUN apt-get install -y cmake python3 ninja-build git lsb-release software-properties-common wget binutils gcc g++ -#RUN bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" RUN bash -c "\ set -ex && \ apt-get install -y cmake python3 ninja-build git lsb-release software-properties-common wget binutils gcc g++ && \ diff --git a/Dockerfile b/Dockerfile index 18f8fbc..9e24974 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ # docker build . -t reflection --progress=plain # clang++ -std=c++26 -freflection -stdlib=libc++ -#FROM yaraslaut/clang-p2996:latest -FROM clang-p2996 +FROM yaraslaut/clang-p2996:latest +#FROM clang-p2996 COPY . /mnt/src WORKDIR /mnt/src diff --git a/include/form/format.h b/include/form/format.h index 698a246..623afa1 100644 --- a/include/form/format.h +++ b/include/form/format.h @@ -55,8 +55,7 @@ struct Node { std::string_view _context; - Node(std::string_view c) : _context{c} { - } + Node(std::string_view c) : _context{c} {} template T as() { diff --git a/src/form.h b/src/form.h deleted file mode 100644 index 461851f..0000000 --- a/src/form.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef FORM_H_ -#define FORM_H_ - - - -#endif // FORM_H_ diff --git a/src/test.h b/src/test.h index aef63c8..fddc6ae 100644 --- a/src/test.h +++ b/src/test.h @@ -202,7 +202,7 @@ void testCreateClass() { constexpr hidden_type value{}; constexpr auto refl_of_value = ^value; - // form::print_members<[:type_of(refl_of_value):]>(); //TODO: Fix this + form::print_members<[:type_of(refl_of_value):]>(); } void testAA() { diff --git a/src/util.h b/src/util.h deleted file mode 100644 index 8a3667d..0000000 --- a/src/util.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef UTIL_H_ -#define UTIL_H_ - - - -#endif // UTIL_H_