├── .github └── workflows │ ├── linux_ci.yml │ └── windows_ci.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── config.h.in ├── example └── src │ ├── malc │ ├── hello-malc.c │ ├── overview.c │ ├── stress-test.c │ └── thread_local_storage.c │ └── malcpp │ ├── custom-allocators.cpp │ ├── custom-destination.cpp │ ├── custom-type.cpp │ ├── hello-malcpp.cpp │ ├── overview.cpp │ └── stress-test.cpp ├── include ├── malc │ ├── common.h │ ├── config.h │ ├── destinations │ │ ├── array.h │ │ ├── file.h │ │ └── stdouterr.h │ ├── impl │ │ ├── c11.h │ │ ├── common.h │ │ ├── logging.h │ │ └── serialization.h │ ├── libexport.h │ ├── log_macros.h │ └── malc.h └── malcpp │ ├── custom_type.hpp │ ├── destinations.hpp │ ├── impl │ ├── c++11.hpp │ ├── c++11_basic_types.hpp │ ├── c++11_std_types.hpp │ ├── compile_time_validation.hpp │ ├── malc_base.hpp │ ├── metaprogramming_common.hpp │ └── serialization.hpp │ ├── malcpp.hpp │ └── malcpp_lean.hpp ├── meson.build ├── meson_options.txt ├── readme.md ├── scripts ├── malc-overview-date-converter.sh └── malcpp11-fmtstr-test.sh ├── src ├── malc │ ├── bounded_buffer.c │ ├── bounded_buffer.h │ ├── destinations.c │ ├── destinations.h │ ├── destinations │ │ ├── array.c │ │ ├── file.c │ │ └── stdouterr.c │ ├── entry_parser.c │ ├── entry_parser.h │ ├── log_entry.h │ ├── malc.c │ ├── memory.c │ ├── memory.h │ ├── serialization.c │ ├── serialization.h │ ├── tls_buffer.c │ └── tls_buffer.h └── malcpp │ ├── c++_std_types.cpp │ ├── custom_type.cpp │ ├── destinations.cpp │ ├── malcpp-e-c-d.cpp │ ├── malcpp-e-c-nd.cpp │ ├── malcpp-e-nc-d.cpp │ ├── malcpp-e-nc-nd.cpp │ ├── malcpp-ne-nc-d.cpp │ ├── malcpp-ne-nc-nd.cpp │ ├── malcpp-template.hpp │ └── wrapper.cpp ├── subprojects └── cmocka.wrap ├── test-all-variants.sh └── test └── src ├── malc-smoke └── smoke.c ├── malc ├── alltypes.h ├── array_destination_test.c ├── bounded_buffer_test.c ├── destinations_test.c ├── entry_parser_test.c ├── file_destination_test.c ├── serialization_test.c ├── test_allocator.h ├── tests_main.c └── tls_buffer_test.c ├── malcpp-smoke └── smoke.cpp └── malcpp ├── compile-time ├── fail_bad_float_modifiers.cpp ├── fail_bad_int_modifiers.cpp ├── fail_excess_arguments_1.cpp ├── fail_excess_arguments_2.cpp ├── fail_excess_arguments_3.cpp ├── fail_excess_placeholders_1.cpp ├── fail_excess_placeholders_2.cpp ├── fail_excess_placeholders_3.cpp ├── fail_missing_refdtor.cpp ├── fail_unescaped_brace_1.cpp ├── fail_unescaped_brace_2.cpp ├── pass_same_argcount.cpp └── validation_test_boilerplate.hpp ├── log_entry_validator.cpp ├── log_entry_validator_c++_types.cpp └── tests_main.cpp /.github/workflows/linux_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/.github/workflows/linux_ci.yml -------------------------------------------------------------------------------- /.github/workflows/windows_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/.github/workflows/windows_ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/LICENSE -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/config.h.in -------------------------------------------------------------------------------- /example/src/malc/hello-malc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/example/src/malc/hello-malc.c -------------------------------------------------------------------------------- /example/src/malc/overview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/example/src/malc/overview.c -------------------------------------------------------------------------------- /example/src/malc/stress-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/example/src/malc/stress-test.c -------------------------------------------------------------------------------- /example/src/malc/thread_local_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/example/src/malc/thread_local_storage.c -------------------------------------------------------------------------------- /example/src/malcpp/custom-allocators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/example/src/malcpp/custom-allocators.cpp -------------------------------------------------------------------------------- /example/src/malcpp/custom-destination.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/example/src/malcpp/custom-destination.cpp -------------------------------------------------------------------------------- /example/src/malcpp/custom-type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/example/src/malcpp/custom-type.cpp -------------------------------------------------------------------------------- /example/src/malcpp/hello-malcpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/example/src/malcpp/hello-malcpp.cpp -------------------------------------------------------------------------------- /example/src/malcpp/overview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/example/src/malcpp/overview.cpp -------------------------------------------------------------------------------- /example/src/malcpp/stress-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/example/src/malcpp/stress-test.cpp -------------------------------------------------------------------------------- /include/malc/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malc/common.h -------------------------------------------------------------------------------- /include/malc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malc/config.h -------------------------------------------------------------------------------- /include/malc/destinations/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malc/destinations/array.h -------------------------------------------------------------------------------- /include/malc/destinations/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malc/destinations/file.h -------------------------------------------------------------------------------- /include/malc/destinations/stdouterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malc/destinations/stdouterr.h -------------------------------------------------------------------------------- /include/malc/impl/c11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malc/impl/c11.h -------------------------------------------------------------------------------- /include/malc/impl/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malc/impl/common.h -------------------------------------------------------------------------------- /include/malc/impl/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malc/impl/logging.h -------------------------------------------------------------------------------- /include/malc/impl/serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malc/impl/serialization.h -------------------------------------------------------------------------------- /include/malc/libexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malc/libexport.h -------------------------------------------------------------------------------- /include/malc/log_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malc/log_macros.h -------------------------------------------------------------------------------- /include/malc/malc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malc/malc.h -------------------------------------------------------------------------------- /include/malcpp/custom_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malcpp/custom_type.hpp -------------------------------------------------------------------------------- /include/malcpp/destinations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malcpp/destinations.hpp -------------------------------------------------------------------------------- /include/malcpp/impl/c++11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malcpp/impl/c++11.hpp -------------------------------------------------------------------------------- /include/malcpp/impl/c++11_basic_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malcpp/impl/c++11_basic_types.hpp -------------------------------------------------------------------------------- /include/malcpp/impl/c++11_std_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malcpp/impl/c++11_std_types.hpp -------------------------------------------------------------------------------- /include/malcpp/impl/compile_time_validation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malcpp/impl/compile_time_validation.hpp -------------------------------------------------------------------------------- /include/malcpp/impl/malc_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malcpp/impl/malc_base.hpp -------------------------------------------------------------------------------- /include/malcpp/impl/metaprogramming_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malcpp/impl/metaprogramming_common.hpp -------------------------------------------------------------------------------- /include/malcpp/impl/serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malcpp/impl/serialization.hpp -------------------------------------------------------------------------------- /include/malcpp/malcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malcpp/malcpp.hpp -------------------------------------------------------------------------------- /include/malcpp/malcpp_lean.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/include/malcpp/malcpp_lean.hpp -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/meson_options.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/malc-overview-date-converter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/scripts/malc-overview-date-converter.sh -------------------------------------------------------------------------------- /scripts/malcpp11-fmtstr-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/scripts/malcpp11-fmtstr-test.sh -------------------------------------------------------------------------------- /src/malc/bounded_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/bounded_buffer.c -------------------------------------------------------------------------------- /src/malc/bounded_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/bounded_buffer.h -------------------------------------------------------------------------------- /src/malc/destinations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/destinations.c -------------------------------------------------------------------------------- /src/malc/destinations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/destinations.h -------------------------------------------------------------------------------- /src/malc/destinations/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/destinations/array.c -------------------------------------------------------------------------------- /src/malc/destinations/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/destinations/file.c -------------------------------------------------------------------------------- /src/malc/destinations/stdouterr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/destinations/stdouterr.c -------------------------------------------------------------------------------- /src/malc/entry_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/entry_parser.c -------------------------------------------------------------------------------- /src/malc/entry_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/entry_parser.h -------------------------------------------------------------------------------- /src/malc/log_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/log_entry.h -------------------------------------------------------------------------------- /src/malc/malc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/malc.c -------------------------------------------------------------------------------- /src/malc/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/memory.c -------------------------------------------------------------------------------- /src/malc/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/memory.h -------------------------------------------------------------------------------- /src/malc/serialization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/serialization.c -------------------------------------------------------------------------------- /src/malc/serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/serialization.h -------------------------------------------------------------------------------- /src/malc/tls_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/tls_buffer.c -------------------------------------------------------------------------------- /src/malc/tls_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malc/tls_buffer.h -------------------------------------------------------------------------------- /src/malcpp/c++_std_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malcpp/c++_std_types.cpp -------------------------------------------------------------------------------- /src/malcpp/custom_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malcpp/custom_type.cpp -------------------------------------------------------------------------------- /src/malcpp/destinations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malcpp/destinations.cpp -------------------------------------------------------------------------------- /src/malcpp/malcpp-e-c-d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malcpp/malcpp-e-c-d.cpp -------------------------------------------------------------------------------- /src/malcpp/malcpp-e-c-nd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malcpp/malcpp-e-c-nd.cpp -------------------------------------------------------------------------------- /src/malcpp/malcpp-e-nc-d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malcpp/malcpp-e-nc-d.cpp -------------------------------------------------------------------------------- /src/malcpp/malcpp-e-nc-nd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malcpp/malcpp-e-nc-nd.cpp -------------------------------------------------------------------------------- /src/malcpp/malcpp-ne-nc-d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malcpp/malcpp-ne-nc-d.cpp -------------------------------------------------------------------------------- /src/malcpp/malcpp-ne-nc-nd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malcpp/malcpp-ne-nc-nd.cpp -------------------------------------------------------------------------------- /src/malcpp/malcpp-template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malcpp/malcpp-template.hpp -------------------------------------------------------------------------------- /src/malcpp/wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/src/malcpp/wrapper.cpp -------------------------------------------------------------------------------- /subprojects/cmocka.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/subprojects/cmocka.wrap -------------------------------------------------------------------------------- /test-all-variants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test-all-variants.sh -------------------------------------------------------------------------------- /test/src/malc-smoke/smoke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malc-smoke/smoke.c -------------------------------------------------------------------------------- /test/src/malc/alltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malc/alltypes.h -------------------------------------------------------------------------------- /test/src/malc/array_destination_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malc/array_destination_test.c -------------------------------------------------------------------------------- /test/src/malc/bounded_buffer_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malc/bounded_buffer_test.c -------------------------------------------------------------------------------- /test/src/malc/destinations_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malc/destinations_test.c -------------------------------------------------------------------------------- /test/src/malc/entry_parser_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malc/entry_parser_test.c -------------------------------------------------------------------------------- /test/src/malc/file_destination_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malc/file_destination_test.c -------------------------------------------------------------------------------- /test/src/malc/serialization_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malc/serialization_test.c -------------------------------------------------------------------------------- /test/src/malc/test_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malc/test_allocator.h -------------------------------------------------------------------------------- /test/src/malc/tests_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malc/tests_main.c -------------------------------------------------------------------------------- /test/src/malc/tls_buffer_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malc/tls_buffer_test.c -------------------------------------------------------------------------------- /test/src/malcpp-smoke/smoke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp-smoke/smoke.cpp -------------------------------------------------------------------------------- /test/src/malcpp/compile-time/fail_bad_float_modifiers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp/compile-time/fail_bad_float_modifiers.cpp -------------------------------------------------------------------------------- /test/src/malcpp/compile-time/fail_bad_int_modifiers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp/compile-time/fail_bad_int_modifiers.cpp -------------------------------------------------------------------------------- /test/src/malcpp/compile-time/fail_excess_arguments_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp/compile-time/fail_excess_arguments_1.cpp -------------------------------------------------------------------------------- /test/src/malcpp/compile-time/fail_excess_arguments_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp/compile-time/fail_excess_arguments_2.cpp -------------------------------------------------------------------------------- /test/src/malcpp/compile-time/fail_excess_arguments_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp/compile-time/fail_excess_arguments_3.cpp -------------------------------------------------------------------------------- /test/src/malcpp/compile-time/fail_excess_placeholders_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp/compile-time/fail_excess_placeholders_1.cpp -------------------------------------------------------------------------------- /test/src/malcpp/compile-time/fail_excess_placeholders_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp/compile-time/fail_excess_placeholders_2.cpp -------------------------------------------------------------------------------- /test/src/malcpp/compile-time/fail_excess_placeholders_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp/compile-time/fail_excess_placeholders_3.cpp -------------------------------------------------------------------------------- /test/src/malcpp/compile-time/fail_missing_refdtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp/compile-time/fail_missing_refdtor.cpp -------------------------------------------------------------------------------- /test/src/malcpp/compile-time/fail_unescaped_brace_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp/compile-time/fail_unescaped_brace_1.cpp -------------------------------------------------------------------------------- /test/src/malcpp/compile-time/fail_unescaped_brace_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp/compile-time/fail_unescaped_brace_2.cpp -------------------------------------------------------------------------------- /test/src/malcpp/compile-time/pass_same_argcount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp/compile-time/pass_same_argcount.cpp -------------------------------------------------------------------------------- /test/src/malcpp/compile-time/validation_test_boilerplate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp/compile-time/validation_test_boilerplate.hpp -------------------------------------------------------------------------------- /test/src/malcpp/log_entry_validator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp/log_entry_validator.cpp -------------------------------------------------------------------------------- /test/src/malcpp/log_entry_validator_c++_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp/log_entry_validator_c++_types.cpp -------------------------------------------------------------------------------- /test/src/malcpp/tests_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RafaGago/mini-async-log-c/HEAD/test/src/malcpp/tests_main.cpp --------------------------------------------------------------------------------