meta icon indicating copy to clipboard operation
meta copied to clipboard

A tiny metaprogramming library

Results 25 meta issues
Sort by recently updated
recently updated
newest added

``` FAILED: meta/test/CMakeFiles/test.meta.dir/meta.cpp.o /usr/bin/clang++ -I/mnt/c/Users/Вова/projects/cpp-project-template/meta/include -std=c++11 -ftemplate-backtrace-limit=0 -Weverything -Werror -pedantic-errors -Wdocumentation -Wno-c++98-compat -Wno-c++98-compat-pedantic -Wno-old-style-cast -Wno-documentation-unknown-command -Wno-missing-prototypes -O2 -g -DNDEBUG -fcolor-diagnostics -MD -MT meta/test/CMakeFiles/test.meta.dir/meta.cpp.o -MF meta/test/CMakeFiles/test.meta.dir/meta.cpp.o.d -o meta/test/CMakeFiles/test.meta.dir/meta.cpp.o -c '/mnt/c/Users/Вова/projects/cpp-project-template/meta/test/meta.cpp' /mnt/c/Users/Вова/projects/cpp-project-template/meta/test/meta.cpp:1966:45:...

When compiling an empty program like this ```cpp #include int main() {} ``` The following compilation errors come from the header file: ``` FAILED: CMakeFiles/cpp-project-template.dir/main.cpp.o /usr/bin/c++ -I/mnt/c/Users/Вова/projects/cpp-project-template/meta/include -O2 -g -DNDEBUG...

I get a compile error with clang 10.0: ``` meta/meta_fwd.hpp:286:20: error: expected concept name with optional arguments [build] { T{} } -> typename T::value_type; [build] ^ ``` Whats the fix?

I believe there's an error in the `reverse_fold` implementation in case `META_CONCEPT` is not set. `compose1_` as defined by `fold` passes the functor's argument as the first argument to the...

This is my first shot. Maybe there are better solutions. I tried hard to stick to the current for_each implementation and use the same approach. -> Tests/Doc added.