├── .gitignore ├── LICENSE ├── README.md ├── coment ├── coment.vcxproj ├── coment.vcxproj.filters ├── coment.vcxproj.user └── include │ ├── boost │ ├── assert.hpp │ ├── blank.hpp │ ├── blank_fwd.hpp │ ├── config.hpp │ ├── config │ │ ├── abi │ │ │ ├── borland_prefix.hpp │ │ │ ├── borland_suffix.hpp │ │ │ ├── msvc_prefix.hpp │ │ │ └── msvc_suffix.hpp │ │ ├── abi_prefix.hpp │ │ ├── abi_suffix.hpp │ │ ├── auto_link.hpp │ │ ├── compiler │ │ │ ├── borland.hpp │ │ │ ├── clang.hpp │ │ │ ├── codegear.hpp │ │ │ ├── comeau.hpp │ │ │ ├── common_edg.hpp │ │ │ ├── compaq_cxx.hpp │ │ │ ├── cray.hpp │ │ │ ├── digitalmars.hpp │ │ │ ├── gcc.hpp │ │ │ ├── gcc_xml.hpp │ │ │ ├── greenhills.hpp │ │ │ ├── hp_acc.hpp │ │ │ ├── intel.hpp │ │ │ ├── kai.hpp │ │ │ ├── metrowerks.hpp │ │ │ ├── mpw.hpp │ │ │ ├── nvcc.hpp │ │ │ ├── pathscale.hpp │ │ │ ├── pgi.hpp │ │ │ ├── sgi_mipspro.hpp │ │ │ ├── sunpro_cc.hpp │ │ │ ├── vacpp.hpp │ │ │ └── visualc.hpp │ │ ├── no_tr1 │ │ │ ├── cmath.hpp │ │ │ ├── complex.hpp │ │ │ ├── functional.hpp │ │ │ ├── memory.hpp │ │ │ └── utility.hpp │ │ ├── platform │ │ │ ├── aix.hpp │ │ │ ├── amigaos.hpp │ │ │ ├── beos.hpp │ │ │ ├── bsd.hpp │ │ │ ├── cray.hpp │ │ │ ├── cygwin.hpp │ │ │ ├── hpux.hpp │ │ │ ├── irix.hpp │ │ │ ├── linux.hpp │ │ │ ├── macos.hpp │ │ │ ├── qnxnto.hpp │ │ │ ├── solaris.hpp │ │ │ ├── symbian.hpp │ │ │ ├── vms.hpp │ │ │ ├── vxworks.hpp │ │ │ └── win32.hpp │ │ ├── posix_features.hpp │ │ ├── requires_threads.hpp │ │ ├── select_compiler_config.hpp │ │ ├── select_platform_config.hpp │ │ ├── select_stdlib_config.hpp │ │ ├── stdlib │ │ │ ├── dinkumware.hpp │ │ │ ├── libcomo.hpp │ │ │ ├── libcpp.hpp │ │ │ ├── libstdcpp3.hpp │ │ │ ├── modena.hpp │ │ │ ├── msl.hpp │ │ │ ├── roguewave.hpp │ │ │ ├── sgi.hpp │ │ │ ├── stlport.hpp │ │ │ └── vacpp.hpp │ │ ├── suffix.hpp │ │ ├── user.hpp │ │ └── warning_disable.hpp │ ├── core │ │ ├── addressof.hpp │ │ ├── enable_if.hpp │ │ ├── lightweight_test.hpp │ │ ├── no_exceptions_support.hpp │ │ └── noncopyable.hpp │ ├── current_function.hpp │ ├── detail │ │ ├── dynamic_bitset.hpp │ │ ├── iterator.hpp │ │ ├── lightweight_test.hpp │ │ ├── no_exceptions_support.hpp │ │ ├── templated_streams.hpp │ │ └── workaround.hpp │ ├── dynamic_bitset.hpp │ ├── dynamic_bitset │ │ ├── config.hpp │ │ └── dynamic_bitset.hpp │ ├── dynamic_bitset_fwd.hpp │ ├── exception │ │ └── exception.hpp │ ├── function_types │ │ ├── components.hpp │ │ ├── config │ │ │ ├── cc_names.hpp │ │ │ ├── compiler.hpp │ │ │ └── config.hpp │ │ ├── detail │ │ │ ├── class_transform.hpp │ │ │ ├── classifier.hpp │ │ │ ├── classifier_impl │ │ │ │ ├── arity10_0.hpp │ │ │ │ ├── arity10_1.hpp │ │ │ │ ├── arity20_0.hpp │ │ │ │ ├── arity20_1.hpp │ │ │ │ ├── arity30_0.hpp │ │ │ │ ├── arity30_1.hpp │ │ │ │ ├── arity40_0.hpp │ │ │ │ ├── arity40_1.hpp │ │ │ │ ├── arity50_0.hpp │ │ │ │ ├── arity50_1.hpp │ │ │ │ └── master.hpp │ │ │ ├── components_as_mpl_sequence.hpp │ │ │ ├── components_impl │ │ │ │ ├── arity10_0.hpp │ │ │ │ ├── arity10_1.hpp │ │ │ │ ├── arity20_0.hpp │ │ │ │ ├── arity20_1.hpp │ │ │ │ ├── arity30_0.hpp │ │ │ │ ├── arity30_1.hpp │ │ │ │ ├── arity40_0.hpp │ │ │ │ ├── arity40_1.hpp │ │ │ │ ├── arity50_0.hpp │ │ │ │ ├── arity50_1.hpp │ │ │ │ └── master.hpp │ │ │ ├── cv_traits.hpp │ │ │ ├── encoding │ │ │ │ ├── aliases_def.hpp │ │ │ │ ├── aliases_undef.hpp │ │ │ │ ├── def.hpp │ │ │ │ └── undef.hpp │ │ │ ├── pp_arity_loop.hpp │ │ │ ├── pp_cc_loop │ │ │ │ ├── master.hpp │ │ │ │ └── preprocessed.hpp │ │ │ ├── pp_loop.hpp │ │ │ ├── pp_retag_default_cc │ │ │ │ ├── master.hpp │ │ │ │ └── preprocessed.hpp │ │ │ ├── pp_tags │ │ │ │ ├── cc_tag.hpp │ │ │ │ ├── master.hpp │ │ │ │ └── preprocessed.hpp │ │ │ ├── pp_variate_loop │ │ │ │ ├── master.hpp │ │ │ │ └── preprocessed.hpp │ │ │ ├── retag_default_cc.hpp │ │ │ ├── synthesize.hpp │ │ │ ├── synthesize_impl │ │ │ │ ├── arity10_0.hpp │ │ │ │ ├── arity10_1.hpp │ │ │ │ ├── arity20_0.hpp │ │ │ │ ├── arity20_1.hpp │ │ │ │ ├── arity30_0.hpp │ │ │ │ ├── arity30_1.hpp │ │ │ │ ├── arity40_0.hpp │ │ │ │ ├── arity40_1.hpp │ │ │ │ ├── arity50_0.hpp │ │ │ │ ├── arity50_1.hpp │ │ │ │ └── master.hpp │ │ │ └── to_sequence.hpp │ │ ├── function_type.hpp │ │ ├── is_callable_builtin.hpp │ │ ├── is_function.hpp │ │ ├── is_member_function_pointer.hpp │ │ ├── is_member_object_pointer.hpp │ │ ├── member_function_pointer.hpp │ │ ├── parameter_types.hpp │ │ └── property_tags.hpp │ ├── integer │ │ └── integer_log2.hpp │ ├── limits.hpp │ ├── move │ │ ├── algorithm.hpp │ │ ├── core.hpp │ │ ├── detail │ │ │ ├── config_begin.hpp │ │ │ ├── config_end.hpp │ │ │ └── meta_utils.hpp │ │ ├── iterator.hpp │ │ ├── move.hpp │ │ ├── traits.hpp │ │ ├── utility.hpp │ │ └── utility_core.hpp │ ├── mpl │ │ ├── O1_size.hpp │ │ ├── O1_size_fwd.hpp │ │ ├── advance.hpp │ │ ├── advance_fwd.hpp │ │ ├── always.hpp │ │ ├── and.hpp │ │ ├── apply.hpp │ │ ├── apply_fwd.hpp │ │ ├── apply_wrap.hpp │ │ ├── arg.hpp │ │ ├── arg_fwd.hpp │ │ ├── assert.hpp │ │ ├── at.hpp │ │ ├── at_fwd.hpp │ │ ├── aux_ │ │ │ ├── O1_size_impl.hpp │ │ │ ├── adl_barrier.hpp │ │ │ ├── advance_backward.hpp │ │ │ ├── advance_forward.hpp │ │ │ ├── arg_typedef.hpp │ │ │ ├── arithmetic_op.hpp │ │ │ ├── arity.hpp │ │ │ ├── arity_spec.hpp │ │ │ ├── at_impl.hpp │ │ │ ├── begin_end_impl.hpp │ │ │ ├── clear_impl.hpp │ │ │ ├── common_name_wknd.hpp │ │ │ ├── comparison_op.hpp │ │ │ ├── config │ │ │ │ ├── adl.hpp │ │ │ │ ├── arrays.hpp │ │ │ │ ├── bcc.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── compiler.hpp │ │ │ │ ├── ctps.hpp │ │ │ │ ├── dmc_ambiguous_ctps.hpp │ │ │ │ ├── dtp.hpp │ │ │ │ ├── eti.hpp │ │ │ │ ├── forwarding.hpp │ │ │ │ ├── gcc.hpp │ │ │ │ ├── gpu.hpp │ │ │ │ ├── has_apply.hpp │ │ │ │ ├── has_xxx.hpp │ │ │ │ ├── integral.hpp │ │ │ │ ├── intel.hpp │ │ │ │ ├── lambda.hpp │ │ │ │ ├── msvc.hpp │ │ │ │ ├── msvc_typename.hpp │ │ │ │ ├── nttp.hpp │ │ │ │ ├── overload_resolution.hpp │ │ │ │ ├── pp_counter.hpp │ │ │ │ ├── preprocessor.hpp │ │ │ │ ├── static_constant.hpp │ │ │ │ ├── ttp.hpp │ │ │ │ ├── typeof.hpp │ │ │ │ ├── use_preprocessed.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── count_args.hpp │ │ │ ├── fold_impl.hpp │ │ │ ├── fold_impl_body.hpp │ │ │ ├── front_impl.hpp │ │ │ ├── full_lambda.hpp │ │ │ ├── has_apply.hpp │ │ │ ├── has_begin.hpp │ │ │ ├── has_rebind.hpp │ │ │ ├── has_size.hpp │ │ │ ├── has_tag.hpp │ │ │ ├── has_type.hpp │ │ │ ├── include_preprocessed.hpp │ │ │ ├── inserter_algorithm.hpp │ │ │ ├── integral_wrapper.hpp │ │ │ ├── is_msvc_eti_arg.hpp │ │ │ ├── iter_fold_impl.hpp │ │ │ ├── joint_iter.hpp │ │ │ ├── lambda_arity_param.hpp │ │ │ ├── lambda_no_ctps.hpp │ │ │ ├── lambda_spec.hpp │ │ │ ├── lambda_support.hpp │ │ │ ├── largest_int.hpp │ │ │ ├── logical_op.hpp │ │ │ ├── msvc_dtw.hpp │ │ │ ├── msvc_eti_base.hpp │ │ │ ├── msvc_is_class.hpp │ │ │ ├── msvc_never_true.hpp │ │ │ ├── msvc_type.hpp │ │ │ ├── na.hpp │ │ │ ├── na_assert.hpp │ │ │ ├── na_fwd.hpp │ │ │ ├── na_spec.hpp │ │ │ ├── nested_type_wknd.hpp │ │ │ ├── nttp_decl.hpp │ │ │ ├── numeric_cast_utils.hpp │ │ │ ├── numeric_op.hpp │ │ │ ├── pop_front_impl.hpp │ │ │ ├── preprocessed │ │ │ │ ├── bcc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── bcc551 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── bcc_pre590 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── dmc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── gcc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── msvc60 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── msvc70 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── mwcw │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── no_ctps │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── no_ttp │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ └── plain │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ ├── preprocessor │ │ │ │ ├── add.hpp │ │ │ │ ├── def_params_tail.hpp │ │ │ │ ├── default_params.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── ext_params.hpp │ │ │ │ ├── filter_params.hpp │ │ │ │ ├── params.hpp │ │ │ │ ├── partial_spec_params.hpp │ │ │ │ ├── range.hpp │ │ │ │ ├── repeat.hpp │ │ │ │ ├── sub.hpp │ │ │ │ └── tuple.hpp │ │ │ ├── push_back_impl.hpp │ │ │ ├── push_front_impl.hpp │ │ │ ├── reverse_fold_impl.hpp │ │ │ ├── reverse_fold_impl_body.hpp │ │ │ ├── sequence_wrapper.hpp │ │ │ ├── size_impl.hpp │ │ │ ├── static_cast.hpp │ │ │ ├── template_arity.hpp │ │ │ ├── template_arity_fwd.hpp │ │ │ ├── traits_lambda_spec.hpp │ │ │ ├── type_wrapper.hpp │ │ │ ├── value_wknd.hpp │ │ │ └── yes_no.hpp │ │ ├── back_fwd.hpp │ │ ├── back_inserter.hpp │ │ ├── begin.hpp │ │ ├── begin_end.hpp │ │ ├── begin_end_fwd.hpp │ │ ├── bind.hpp │ │ ├── bind_fwd.hpp │ │ ├── bitand.hpp │ │ ├── bitxor.hpp │ │ ├── bool.hpp │ │ ├── bool_fwd.hpp │ │ ├── clear.hpp │ │ ├── clear_fwd.hpp │ │ ├── copy.hpp │ │ ├── deref.hpp │ │ ├── distance.hpp │ │ ├── distance_fwd.hpp │ │ ├── empty_fwd.hpp │ │ ├── equal_to.hpp │ │ ├── eval_if.hpp │ │ ├── fold.hpp │ │ ├── front.hpp │ │ ├── front_fwd.hpp │ │ ├── front_inserter.hpp │ │ ├── has_xxx.hpp │ │ ├── identity.hpp │ │ ├── if.hpp │ │ ├── inserter.hpp │ │ ├── int.hpp │ │ ├── int_fwd.hpp │ │ ├── integral_c.hpp │ │ ├── integral_c_fwd.hpp │ │ ├── integral_c_tag.hpp │ │ ├── is_placeholder.hpp │ │ ├── is_sequence.hpp │ │ ├── iter_fold.hpp │ │ ├── iterator_range.hpp │ │ ├── iterator_tags.hpp │ │ ├── joint_view.hpp │ │ ├── lambda.hpp │ │ ├── lambda_fwd.hpp │ │ ├── less.hpp │ │ ├── limits │ │ │ ├── arity.hpp │ │ │ ├── unrolling.hpp │ │ │ └── vector.hpp │ │ ├── logical.hpp │ │ ├── long.hpp │ │ ├── long_fwd.hpp │ │ ├── minus.hpp │ │ ├── negate.hpp │ │ ├── next.hpp │ │ ├── next_prior.hpp │ │ ├── not.hpp │ │ ├── numeric_cast.hpp │ │ ├── or.hpp │ │ ├── placeholders.hpp │ │ ├── plus.hpp │ │ ├── pop_back_fwd.hpp │ │ ├── pop_front.hpp │ │ ├── pop_front_fwd.hpp │ │ ├── prior.hpp │ │ ├── protect.hpp │ │ ├── push_back.hpp │ │ ├── push_back_fwd.hpp │ │ ├── push_front.hpp │ │ ├── push_front_fwd.hpp │ │ ├── quote.hpp │ │ ├── remove.hpp │ │ ├── remove_if.hpp │ │ ├── reverse_fold.hpp │ │ ├── same_as.hpp │ │ ├── sequence_tag.hpp │ │ ├── sequence_tag_fwd.hpp │ │ ├── size.hpp │ │ ├── size_fwd.hpp │ │ ├── tag.hpp │ │ ├── vector.hpp │ │ ├── vector │ │ │ ├── aux_ │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── at.hpp │ │ │ │ ├── back.hpp │ │ │ │ ├── begin_end.hpp │ │ │ │ ├── clear.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── numbered_c.hpp │ │ │ │ ├── pop_back.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ ├── plain │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ └── typeof_based │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── vector0.hpp │ │ │ ├── vector0.hpp │ │ │ ├── vector0_c.hpp │ │ │ ├── vector10.hpp │ │ │ ├── vector10_c.hpp │ │ │ ├── vector20.hpp │ │ │ ├── vector20_c.hpp │ │ │ ├── vector30.hpp │ │ │ ├── vector30_c.hpp │ │ │ ├── vector40.hpp │ │ │ ├── vector40_c.hpp │ │ │ ├── vector50.hpp │ │ │ └── vector50_c.hpp │ │ ├── void.hpp │ │ └── void_fwd.hpp │ ├── noncopyable.hpp │ ├── pending │ │ ├── integer_log2.hpp │ │ └── lowest_bit.hpp │ ├── preprocessor │ │ ├── arithmetic │ │ │ ├── add.hpp │ │ │ ├── dec.hpp │ │ │ ├── inc.hpp │ │ │ └── sub.hpp │ │ ├── array │ │ │ ├── data.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ └── size.hpp │ │ ├── cat.hpp │ │ ├── comma_if.hpp │ │ ├── comparison │ │ │ ├── equal.hpp │ │ │ └── not_equal.hpp │ │ ├── config │ │ │ └── config.hpp │ │ ├── control │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── while.hpp │ │ │ │ ├── edg │ │ │ │ │ └── while.hpp │ │ │ │ ├── msvc │ │ │ │ │ └── while.hpp │ │ │ │ └── while.hpp │ │ │ ├── expr_if.hpp │ │ │ ├── expr_iif.hpp │ │ │ ├── if.hpp │ │ │ ├── iif.hpp │ │ │ └── while.hpp │ │ ├── debug │ │ │ ├── assert.hpp │ │ │ └── error.hpp │ │ ├── dec.hpp │ │ ├── detail │ │ │ ├── auto_rec.hpp │ │ │ ├── check.hpp │ │ │ ├── dmc │ │ │ │ └── auto_rec.hpp │ │ │ ├── is_binary.hpp │ │ │ └── split.hpp │ │ ├── empty.hpp │ │ ├── enum.hpp │ │ ├── enum_params.hpp │ │ ├── enum_params_with_a_default.hpp │ │ ├── enum_shifted_params.hpp │ │ ├── expr_if.hpp │ │ ├── facilities │ │ │ ├── detail │ │ │ │ └── is_empty.hpp │ │ │ ├── empty.hpp │ │ │ ├── expand.hpp │ │ │ ├── identity.hpp │ │ │ ├── intercept.hpp │ │ │ ├── is_1.hpp │ │ │ ├── is_empty.hpp │ │ │ ├── is_empty_variadic.hpp │ │ │ └── overload.hpp │ │ ├── identity.hpp │ │ ├── inc.hpp │ │ ├── iterate.hpp │ │ ├── iteration │ │ │ ├── detail │ │ │ │ ├── bounds │ │ │ │ │ ├── lower1.hpp │ │ │ │ │ ├── lower2.hpp │ │ │ │ │ ├── lower3.hpp │ │ │ │ │ ├── lower4.hpp │ │ │ │ │ ├── lower5.hpp │ │ │ │ │ ├── upper1.hpp │ │ │ │ │ ├── upper2.hpp │ │ │ │ │ ├── upper3.hpp │ │ │ │ │ ├── upper4.hpp │ │ │ │ │ └── upper5.hpp │ │ │ │ ├── finish.hpp │ │ │ │ ├── iter │ │ │ │ │ ├── forward1.hpp │ │ │ │ │ ├── forward2.hpp │ │ │ │ │ ├── forward3.hpp │ │ │ │ │ ├── forward4.hpp │ │ │ │ │ ├── forward5.hpp │ │ │ │ │ ├── reverse1.hpp │ │ │ │ │ ├── reverse2.hpp │ │ │ │ │ ├── reverse3.hpp │ │ │ │ │ ├── reverse4.hpp │ │ │ │ │ └── reverse5.hpp │ │ │ │ ├── local.hpp │ │ │ │ ├── rlocal.hpp │ │ │ │ ├── self.hpp │ │ │ │ └── start.hpp │ │ │ ├── iterate.hpp │ │ │ ├── local.hpp │ │ │ └── self.hpp │ │ ├── list │ │ │ ├── adt.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── fold_left.hpp │ │ │ │ ├── edg │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ └── fold_right.hpp │ │ │ │ ├── fold_left.hpp │ │ │ │ └── fold_right.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ ├── for_each_i.hpp │ │ │ └── reverse.hpp │ │ ├── logical │ │ │ ├── and.hpp │ │ │ ├── bitand.hpp │ │ │ ├── bool.hpp │ │ │ ├── compl.hpp │ │ │ └── not.hpp │ │ ├── punctuation │ │ │ ├── comma.hpp │ │ │ ├── comma_if.hpp │ │ │ ├── detail │ │ │ │ └── is_begin_parens.hpp │ │ │ ├── is_begin_parens.hpp │ │ │ └── paren.hpp │ │ ├── repeat.hpp │ │ ├── repetition │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── for.hpp │ │ │ │ ├── edg │ │ │ │ │ └── for.hpp │ │ │ │ ├── for.hpp │ │ │ │ └── msvc │ │ │ │ │ └── for.hpp │ │ │ ├── enum.hpp │ │ │ ├── enum_binary_params.hpp │ │ │ ├── enum_params.hpp │ │ │ ├── enum_params_with_a_default.hpp │ │ │ ├── enum_shifted_params.hpp │ │ │ ├── enum_trailing_params.hpp │ │ │ ├── for.hpp │ │ │ └── repeat.hpp │ │ ├── seq │ │ │ ├── detail │ │ │ │ └── split.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── first_n.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── rest_n.hpp │ │ │ ├── seq.hpp │ │ │ ├── size.hpp │ │ │ └── subseq.hpp │ │ ├── slot │ │ │ ├── detail │ │ │ │ ├── counter.hpp │ │ │ │ ├── def.hpp │ │ │ │ ├── shared.hpp │ │ │ │ ├── slot1.hpp │ │ │ │ ├── slot2.hpp │ │ │ │ ├── slot3.hpp │ │ │ │ ├── slot4.hpp │ │ │ │ └── slot5.hpp │ │ │ └── slot.hpp │ │ ├── stringize.hpp │ │ ├── tuple │ │ │ ├── detail │ │ │ │ └── is_single_return.hpp │ │ │ ├── eat.hpp │ │ │ ├── elem.hpp │ │ │ ├── rem.hpp │ │ │ ├── size.hpp │ │ │ ├── to_list.hpp │ │ │ └── to_seq.hpp │ │ └── variadic │ │ │ ├── elem.hpp │ │ │ ├── size.hpp │ │ │ └── to_seq.hpp │ ├── static_assert.hpp │ ├── throw_exception.hpp │ ├── tti │ │ ├── detail │ │ │ ├── dcomp_mem_fun.hpp │ │ │ ├── ddata.hpp │ │ │ ├── ddeftype.hpp │ │ │ ├── dftclass.hpp │ │ │ ├── dfunction.hpp │ │ │ ├── dlambda.hpp │ │ │ ├── dmem_data.hpp │ │ │ ├── dmem_fun.hpp │ │ │ ├── dmem_type.hpp │ │ │ ├── dmetafunc.hpp │ │ │ ├── dnotype.hpp │ │ │ ├── dnullptr.hpp │ │ │ ├── dplaceholder.hpp │ │ │ ├── dptmf.hpp │ │ │ ├── dstatic_mem_data.hpp │ │ │ ├── dstatic_mem_fun.hpp │ │ │ ├── dtclass.hpp │ │ │ ├── dtemplate.hpp │ │ │ ├── dtemplate_params.hpp │ │ │ ├── dtfunction.hpp │ │ │ ├── dtype.hpp │ │ │ └── dvm_template_params.hpp │ │ ├── gen │ │ │ ├── has_data_gen.hpp │ │ │ ├── has_function_gen.hpp │ │ │ ├── has_member_data_gen.hpp │ │ │ ├── has_member_function_gen.hpp │ │ │ ├── has_static_member_data_gen.hpp │ │ │ ├── has_static_member_function_gen.hpp │ │ │ ├── has_template_gen.hpp │ │ │ ├── has_type_gen.hpp │ │ │ ├── member_type_gen.hpp │ │ │ └── namespace_gen.hpp │ │ ├── has_data.hpp │ │ ├── has_function.hpp │ │ ├── has_member_data.hpp │ │ ├── has_member_function.hpp │ │ ├── has_static_member_data.hpp │ │ ├── has_static_member_function.hpp │ │ ├── has_template.hpp │ │ ├── has_type.hpp │ │ ├── member_type.hpp │ │ └── tti.hpp │ ├── type.hpp │ ├── type_traits │ │ ├── add_lvalue_reference.hpp │ │ ├── add_pointer.hpp │ │ ├── add_reference.hpp │ │ ├── add_rvalue_reference.hpp │ │ ├── config.hpp │ │ ├── detail │ │ │ ├── bool_trait_def.hpp │ │ │ ├── bool_trait_undef.hpp │ │ │ ├── cv_traits_impl.hpp │ │ │ ├── false_result.hpp │ │ │ ├── ice_and.hpp │ │ │ ├── ice_eq.hpp │ │ │ ├── ice_not.hpp │ │ │ ├── ice_or.hpp │ │ │ ├── is_function_ptr_helper.hpp │ │ │ ├── is_function_ptr_tester.hpp │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ ├── template_arity_spec.hpp │ │ │ ├── type_trait_def.hpp │ │ │ ├── type_trait_undef.hpp │ │ │ └── yes_no_type.hpp │ │ ├── has_nothrow_assign.hpp │ │ ├── has_nothrow_copy.hpp │ │ ├── has_trivial_assign.hpp │ │ ├── has_trivial_constructor.hpp │ │ ├── has_trivial_copy.hpp │ │ ├── has_trivial_destructor.hpp │ │ ├── has_trivial_move_assign.hpp │ │ ├── has_trivial_move_constructor.hpp │ │ ├── ice.hpp │ │ ├── integral_constant.hpp │ │ ├── intrinsics.hpp │ │ ├── is_abstract.hpp │ │ ├── is_arithmetic.hpp │ │ ├── is_array.hpp │ │ ├── is_base_and_derived.hpp │ │ ├── is_class.hpp │ │ ├── is_const.hpp │ │ ├── is_convertible.hpp │ │ ├── is_copy_constructible.hpp │ │ ├── is_empty.hpp │ │ ├── is_enum.hpp │ │ ├── is_float.hpp │ │ ├── is_function.hpp │ │ ├── is_integral.hpp │ │ ├── is_lvalue_reference.hpp │ │ ├── is_member_function_pointer.hpp │ │ ├── is_member_pointer.hpp │ │ ├── is_nothrow_move_assignable.hpp │ │ ├── is_nothrow_move_constructible.hpp │ │ ├── is_pod.hpp │ │ ├── is_pointer.hpp │ │ ├── is_polymorphic.hpp │ │ ├── is_reference.hpp │ │ ├── is_rvalue_reference.hpp │ │ ├── is_same.hpp │ │ ├── is_scalar.hpp │ │ ├── is_stateless.hpp │ │ ├── is_union.hpp │ │ ├── is_void.hpp │ │ ├── is_volatile.hpp │ │ ├── remove_bounds.hpp │ │ ├── remove_const.hpp │ │ ├── remove_cv.hpp │ │ ├── remove_pointer.hpp │ │ └── remove_reference.hpp │ ├── utility │ │ ├── addressof.hpp │ │ ├── declval.hpp │ │ └── enable_if.hpp │ └── version.hpp │ └── coment │ ├── Component.h │ ├── DLL.h │ ├── Entity.h │ ├── Entity.inl │ ├── SignalType.h │ ├── World.h │ ├── World.inl │ ├── managers │ ├── ComponentManager.h │ ├── ComponentManager.inl │ ├── EntityManager.h │ ├── EntityManager.inl │ ├── Manager.h │ └── Manager.inl │ ├── signals │ ├── Connection.h │ ├── Connection.inl │ ├── Observer.h │ ├── Observer.inl │ ├── Signal.h │ └── Signal.inl │ ├── systems │ └── System.h │ └── util │ ├── EntityMap.h │ ├── EntityMap.inl │ ├── PriorityComparator.h │ ├── TypeEnumerator.h │ ├── TypeEnumerator.inl │ ├── TypeMap.h │ ├── combined_hash.h │ └── dynamic_bitset.h ├── coment_tests ├── Makefile ├── coment_tests.vcxproj ├── coment_tests.vcxproj.filters ├── coment_tests.vcxproj.user ├── include │ └── tests │ │ ├── manager_tests │ │ └── Managers.h │ │ └── system_tests │ │ └── CallbackTestSystem.h └── src │ ├── main.cpp │ └── tests │ ├── component_tests │ ├── component_addition_typesafe.cpp │ └── component_removal_typesafe.cpp │ ├── entity_tests │ └── entity_creation.cpp │ ├── manager_tests │ ├── manager_callbacks.cpp │ └── manager_creation.cpp │ ├── reflection_tests │ └── reflection_tests.cpp │ ├── system_tests │ └── system_callbacks.cpp │ └── util_tests │ ├── bitset_comparison.cpp │ ├── bitset_subset.cpp │ └── type_manager.cpp ├── dep └── include │ └── catch.hpp ├── projectfiles └── Windows │ ├── coment.VS2013.sln │ ├── coment.VS2013.v12.suo │ └── dep │ ├── bin │ ├── Win32 │ │ ├── Assimp32.dll │ │ ├── FreeImage.dll │ │ ├── SDL2.dll │ │ ├── glew32.dll │ │ └── libclang.dll │ └── x64 │ │ └── assimp.dll │ ├── include │ ├── FreeImage.h │ ├── GL │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h │ ├── SDL2 │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── begin_code.h │ │ └── close_code.h │ ├── assimp │ │ ├── Compiler │ │ │ ├── poppack1.h │ │ │ └── pushpack1.h │ │ ├── DefaultLogger.hpp │ │ ├── Exporter.hpp │ │ ├── IOStream.hpp │ │ ├── IOSystem.hpp │ │ ├── Importer.hpp │ │ ├── LogStream.hpp │ │ ├── Logger.hpp │ │ ├── NullLogger.hpp │ │ ├── ProgressHandler.hpp │ │ ├── ai_assert.h │ │ ├── anim.h │ │ ├── camera.h │ │ ├── cexport.h │ │ ├── cfileio.h │ │ ├── cimport.h │ │ ├── color4.h │ │ ├── color4.inl │ │ ├── config.h │ │ ├── defs.h │ │ ├── importerdesc.h │ │ ├── light.h │ │ ├── material.h │ │ ├── material.inl │ │ ├── matrix3x3.h │ │ ├── matrix3x3.inl │ │ ├── matrix4x4.h │ │ ├── matrix4x4.inl │ │ ├── mesh.h │ │ ├── postprocess.h │ │ ├── quaternion.h │ │ ├── quaternion.inl │ │ ├── scene.h │ │ ├── texture.h │ │ ├── types.h │ │ ├── vector2.h │ │ ├── vector2.inl │ │ ├── vector3.h │ │ ├── vector3.inl │ │ └── version.h │ └── clang-c │ │ ├── BuildSystem.h │ │ ├── CXCompilationDatabase.h │ │ ├── CXErrorCode.h │ │ ├── CXString.h │ │ ├── Documentation.h │ │ ├── Index.h │ │ └── Platform.h │ └── lib │ ├── Win32 │ ├── FreeImage.lib │ ├── SDL2.lib │ ├── SDL2main.lib │ ├── assimp.lib │ ├── glew32.lib │ ├── libclang.exp │ └── libclang.imp │ └── x64 │ └── assimp.lib └── samples ├── balls ├── Makefile ├── README.md ├── balls.vcxproj ├── balls.vcxproj.filters ├── balls.vcxproj.user ├── include │ ├── components │ │ ├── Color.h │ │ ├── Position.h │ │ ├── Radius.h │ │ └── Velocity.h │ └── systems │ │ ├── CircleCollisionSystem.h │ │ ├── MovementSystem.h │ │ └── RenderingSystem.h └── src │ └── balls.cpp └── common ├── README.md ├── common.vcxproj ├── common.vcxproj.filters ├── common.vcxproj.user ├── include ├── gl │ └── Texture.h ├── glm │ ├── CMakeLists.txt │ ├── common.hpp │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── dummy.cpp │ │ ├── func_common.hpp │ │ ├── func_common.inl │ │ ├── func_exponential.hpp │ │ ├── func_exponential.inl │ │ ├── func_geometric.hpp │ │ ├── func_geometric.inl │ │ ├── func_integer.hpp │ │ ├── func_integer.inl │ │ ├── func_matrix.hpp │ │ ├── func_matrix.inl │ │ ├── func_noise.hpp │ │ ├── func_noise.inl │ │ ├── func_packing.hpp │ │ ├── func_packing.inl │ │ ├── func_trigonometric.hpp │ │ ├── func_trigonometric.inl │ │ ├── func_vector_relational.hpp │ │ ├── func_vector_relational.inl │ │ ├── glm.cpp │ │ ├── intrinsic_common.hpp │ │ ├── intrinsic_common.inl │ │ ├── intrinsic_exponential.hpp │ │ ├── intrinsic_exponential.inl │ │ ├── intrinsic_geometric.hpp │ │ ├── intrinsic_geometric.inl │ │ ├── intrinsic_integer.hpp │ │ ├── intrinsic_integer.inl │ │ ├── intrinsic_matrix.hpp │ │ ├── intrinsic_matrix.inl │ │ ├── intrinsic_trigonometric.hpp │ │ ├── intrinsic_trigonometric.inl │ │ ├── intrinsic_vector_relational.hpp │ │ ├── intrinsic_vector_relational.inl │ │ ├── precision.hpp │ │ ├── setup.hpp │ │ ├── type_float.hpp │ │ ├── type_gentype.hpp │ │ ├── type_gentype.inl │ │ ├── type_half.hpp │ │ ├── type_half.inl │ │ ├── type_int.hpp │ │ ├── type_mat.hpp │ │ ├── type_mat.inl │ │ ├── type_mat2x2.hpp │ │ ├── type_mat2x2.inl │ │ ├── type_mat2x3.hpp │ │ ├── type_mat2x3.inl │ │ ├── type_mat2x4.hpp │ │ ├── type_mat2x4.inl │ │ ├── type_mat3x2.hpp │ │ ├── type_mat3x2.inl │ │ ├── type_mat3x3.hpp │ │ ├── type_mat3x3.inl │ │ ├── type_mat3x4.hpp │ │ ├── type_mat3x4.inl │ │ ├── type_mat4x2.hpp │ │ ├── type_mat4x2.inl │ │ ├── type_mat4x3.hpp │ │ ├── type_mat4x3.inl │ │ ├── type_mat4x4.hpp │ │ ├── type_mat4x4.inl │ │ ├── type_vec.hpp │ │ ├── type_vec.inl │ │ ├── type_vec1.hpp │ │ ├── type_vec1.inl │ │ ├── type_vec2.hpp │ │ ├── type_vec2.inl │ │ ├── type_vec3.hpp │ │ ├── type_vec3.inl │ │ ├── type_vec4.hpp │ │ ├── type_vec4.inl │ │ ├── type_vec4_avx.inl │ │ ├── type_vec4_avx2.inl │ │ └── type_vec4_sse2.inl │ ├── exponential.hpp │ ├── ext.hpp │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.hpp │ ├── gtc │ │ ├── bitfield.hpp │ │ ├── bitfield.inl │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── matrix_access.hpp │ │ ├── matrix_access.inl │ │ ├── matrix_integer.hpp │ │ ├── matrix_inverse.hpp │ │ ├── matrix_inverse.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── noise.hpp │ │ ├── noise.inl │ │ ├── packing.hpp │ │ ├── packing.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── round.hpp │ │ ├── round.inl │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ ├── ulp.inl │ │ ├── vec1.hpp │ │ └── vec1.inl │ ├── gtx │ │ ├── associated_min_max.hpp │ │ ├── associated_min_max.inl │ │ ├── bit.hpp │ │ ├── bit.inl │ │ ├── closest_point.hpp │ │ ├── closest_point.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── color_space_YCoCg.hpp │ │ ├── color_space_YCoCg.inl │ │ ├── common.hpp │ │ ├── common.inl │ │ ├── compatibility.hpp │ │ ├── compatibility.inl │ │ ├── component_wise.hpp │ │ ├── component_wise.inl │ │ ├── dual_quaternion.hpp │ │ ├── dual_quaternion.inl │ │ ├── euler_angles.hpp │ │ ├── euler_angles.inl │ │ ├── extend.hpp │ │ ├── extend.inl │ │ ├── extented_min_max.hpp │ │ ├── extented_min_max.inl │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── gradient_paint.hpp │ │ ├── gradient_paint.inl │ │ ├── handed_coordinate_space.hpp │ │ ├── handed_coordinate_space.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── intersect.hpp │ │ ├── intersect.inl │ │ ├── io.hpp │ │ ├── io.inl │ │ ├── log_base.hpp │ │ ├── log_base.inl │ │ ├── matrix_cross_product.hpp │ │ ├── matrix_cross_product.inl │ │ ├── matrix_decompose.hpp │ │ ├── matrix_decompose.inl │ │ ├── matrix_interpolation.hpp │ │ ├── matrix_interpolation.inl │ │ ├── matrix_major_storage.hpp │ │ ├── matrix_major_storage.inl │ │ ├── matrix_operation.hpp │ │ ├── matrix_operation.inl │ │ ├── matrix_query.hpp │ │ ├── matrix_query.inl │ │ ├── matrix_transform_2d.hpp │ │ ├── matrix_transform_2d.inl │ │ ├── mixed_product.hpp │ │ ├── mixed_product.inl │ │ ├── multiple.hpp │ │ ├── multiple.inl │ │ ├── norm.hpp │ │ ├── norm.inl │ │ ├── normal.hpp │ │ ├── normal.inl │ │ ├── normalize_dot.hpp │ │ ├── normalize_dot.inl │ │ ├── number_precision.hpp │ │ ├── number_precision.inl │ │ ├── optimum_pow.hpp │ │ ├── optimum_pow.inl │ │ ├── orthonormalize.hpp │ │ ├── orthonormalize.inl │ │ ├── perpendicular.hpp │ │ ├── perpendicular.inl │ │ ├── polar_coordinates.hpp │ │ ├── polar_coordinates.inl │ │ ├── projection.hpp │ │ ├── projection.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── range.hpp │ │ ├── raw_data.hpp │ │ ├── raw_data.inl │ │ ├── rotate_normalized_axis.hpp │ │ ├── rotate_normalized_axis.inl │ │ ├── rotate_vector.hpp │ │ ├── rotate_vector.inl │ │ ├── scalar_multiplication.hpp │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── simd_mat4.hpp │ │ ├── simd_mat4.inl │ │ ├── simd_quat.hpp │ │ ├── simd_quat.inl │ │ ├── simd_vec4.hpp │ │ ├── simd_vec4.inl │ │ ├── spline.hpp │ │ ├── spline.inl │ │ ├── std_based_type.hpp │ │ ├── std_based_type.inl │ │ ├── string_cast.hpp │ │ ├── string_cast.inl │ │ ├── transform.hpp │ │ ├── transform.inl │ │ ├── transform2.hpp │ │ ├── transform2.inl │ │ ├── type_aligned.hpp │ │ ├── type_aligned.inl │ │ ├── vector_angle.hpp │ │ ├── vector_angle.inl │ │ ├── vector_query.hpp │ │ ├── vector_query.inl │ │ ├── wrap.hpp │ │ └── wrap.inl │ ├── integer.hpp │ ├── mat2x2.hpp │ ├── mat2x3.hpp │ ├── mat2x4.hpp │ ├── mat3x2.hpp │ ├── mat3x3.hpp │ ├── mat3x4.hpp │ ├── mat4x2.hpp │ ├── mat4x3.hpp │ ├── mat4x4.hpp │ ├── matrix.hpp │ ├── packing.hpp │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ └── vector_relational.hpp ├── resources │ ├── Image.h │ └── Mesh.h └── util │ ├── ComputeShader.h │ ├── FileIO.h │ ├── MemoryLeakDetection.h │ └── SDLWindow.h └── src ├── gl └── Texture.cpp ├── resources ├── Image.cpp └── Mesh.cpp └── util ├── MemoryLeakDetection.cpp └── SDLWindow.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2015 Caitlin Wilks 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/README.md -------------------------------------------------------------------------------- /coment/coment.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/coment.vcxproj -------------------------------------------------------------------------------- /coment/coment.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/coment.vcxproj.filters -------------------------------------------------------------------------------- /coment/coment.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/coment.vcxproj.user -------------------------------------------------------------------------------- /coment/include/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/assert.hpp -------------------------------------------------------------------------------- /coment/include/boost/blank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/blank.hpp -------------------------------------------------------------------------------- /coment/include/boost/blank_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/blank_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/abi/borland_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/abi/borland_prefix.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/abi/borland_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/abi/borland_suffix.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/abi/msvc_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/abi/msvc_prefix.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/abi/msvc_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/abi/msvc_suffix.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/abi_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/abi_prefix.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/abi_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/abi_suffix.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/borland.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/borland.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/clang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/clang.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/codegear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/codegear.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/comeau.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/comeau.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/common_edg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/common_edg.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/compaq_cxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/compaq_cxx.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/cray.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/digitalmars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/digitalmars.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/gcc.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/gcc_xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/gcc_xml.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/greenhills.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/greenhills.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/hp_acc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/hp_acc.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/intel.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/kai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/kai.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/metrowerks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/metrowerks.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/mpw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/mpw.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/nvcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/nvcc.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/pathscale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/pathscale.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/pgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/pgi.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/sgi_mipspro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/sgi_mipspro.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/sunpro_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/sunpro_cc.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/vacpp.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/compiler/visualc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/compiler/visualc.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/no_tr1/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/no_tr1/cmath.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/no_tr1/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/no_tr1/complex.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/no_tr1/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/no_tr1/functional.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/no_tr1/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/no_tr1/memory.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/no_tr1/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/no_tr1/utility.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/platform/aix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/platform/aix.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/platform/amigaos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/platform/amigaos.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/platform/beos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/platform/beos.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/platform/bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/platform/bsd.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/platform/cray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/platform/cray.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/platform/cygwin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/platform/cygwin.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/platform/hpux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/platform/hpux.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/platform/irix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/platform/irix.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/platform/linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/platform/linux.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/platform/macos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/platform/macos.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/platform/qnxnto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/platform/qnxnto.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/platform/solaris.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/platform/solaris.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/platform/symbian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/platform/symbian.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/platform/vms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/platform/vms.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/platform/vxworks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/platform/vxworks.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/platform/win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/platform/win32.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/posix_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/posix_features.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/requires_threads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/requires_threads.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/select_stdlib_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/select_stdlib_config.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/stdlib/dinkumware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/stdlib/dinkumware.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/stdlib/libcomo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/stdlib/libcomo.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/stdlib/libcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/stdlib/libcpp.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/stdlib/libstdcpp3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/stdlib/libstdcpp3.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/stdlib/modena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/stdlib/modena.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/stdlib/roguewave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/stdlib/roguewave.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/stdlib/stlport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/stdlib/stlport.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/stdlib/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/stdlib/vacpp.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/suffix.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/user.hpp -------------------------------------------------------------------------------- /coment/include/boost/config/warning_disable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/config/warning_disable.hpp -------------------------------------------------------------------------------- /coment/include/boost/core/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/core/addressof.hpp -------------------------------------------------------------------------------- /coment/include/boost/core/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/core/enable_if.hpp -------------------------------------------------------------------------------- /coment/include/boost/core/lightweight_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/core/lightweight_test.hpp -------------------------------------------------------------------------------- /coment/include/boost/core/no_exceptions_support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/core/no_exceptions_support.hpp -------------------------------------------------------------------------------- /coment/include/boost/core/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/core/noncopyable.hpp -------------------------------------------------------------------------------- /coment/include/boost/current_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/current_function.hpp -------------------------------------------------------------------------------- /coment/include/boost/detail/dynamic_bitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/detail/dynamic_bitset.hpp -------------------------------------------------------------------------------- /coment/include/boost/detail/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/detail/iterator.hpp -------------------------------------------------------------------------------- /coment/include/boost/detail/lightweight_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/detail/lightweight_test.hpp -------------------------------------------------------------------------------- /coment/include/boost/detail/no_exceptions_support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/detail/no_exceptions_support.hpp -------------------------------------------------------------------------------- /coment/include/boost/detail/templated_streams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/detail/templated_streams.hpp -------------------------------------------------------------------------------- /coment/include/boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /coment/include/boost/dynamic_bitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/dynamic_bitset.hpp -------------------------------------------------------------------------------- /coment/include/boost/dynamic_bitset/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/dynamic_bitset/config.hpp -------------------------------------------------------------------------------- /coment/include/boost/dynamic_bitset_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/dynamic_bitset_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/exception/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/exception/exception.hpp -------------------------------------------------------------------------------- /coment/include/boost/function_types/components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/function_types/components.hpp -------------------------------------------------------------------------------- /coment/include/boost/function_types/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/function_types/config/config.hpp -------------------------------------------------------------------------------- /coment/include/boost/function_types/function_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/function_types/function_type.hpp -------------------------------------------------------------------------------- /coment/include/boost/function_types/is_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/function_types/is_function.hpp -------------------------------------------------------------------------------- /coment/include/boost/function_types/property_tags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/function_types/property_tags.hpp -------------------------------------------------------------------------------- /coment/include/boost/integer/integer_log2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/integer/integer_log2.hpp -------------------------------------------------------------------------------- /coment/include/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/limits.hpp -------------------------------------------------------------------------------- /coment/include/boost/move/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/move/algorithm.hpp -------------------------------------------------------------------------------- /coment/include/boost/move/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/move/core.hpp -------------------------------------------------------------------------------- /coment/include/boost/move/detail/config_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/move/detail/config_begin.hpp -------------------------------------------------------------------------------- /coment/include/boost/move/detail/config_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/move/detail/config_end.hpp -------------------------------------------------------------------------------- /coment/include/boost/move/detail/meta_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/move/detail/meta_utils.hpp -------------------------------------------------------------------------------- /coment/include/boost/move/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/move/iterator.hpp -------------------------------------------------------------------------------- /coment/include/boost/move/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/move/move.hpp -------------------------------------------------------------------------------- /coment/include/boost/move/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/move/traits.hpp -------------------------------------------------------------------------------- /coment/include/boost/move/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/move/utility.hpp -------------------------------------------------------------------------------- /coment/include/boost/move/utility_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/move/utility_core.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/O1_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/O1_size.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/O1_size_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/O1_size_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/advance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/advance.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/advance_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/advance_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/always.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/always.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/and.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/apply.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/apply_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/apply_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/apply_wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/apply_wrap.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/arg.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/arg_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/arg_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/assert.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/at.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/at_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/at_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/O1_size_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/O1_size_impl.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/adl_barrier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/adl_barrier.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/advance_backward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/advance_backward.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/advance_forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/advance_forward.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/arg_typedef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/arg_typedef.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/arithmetic_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/arithmetic_op.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/arity.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/arity_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/arity_spec.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/at_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/at_impl.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/begin_end_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/begin_end_impl.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/clear_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/clear_impl.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/common_name_wknd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/common_name_wknd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/comparison_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/comparison_op.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/adl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/adl.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/arrays.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/arrays.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/bcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/bcc.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/bind.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/compiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/compiler.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/ctps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/ctps.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/dtp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/dtp.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/eti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/eti.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/forwarding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/forwarding.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/gcc.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/gpu.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/has_apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/has_apply.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/has_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/has_xxx.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/integral.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/intel.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/lambda.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/msvc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/msvc.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/nttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/nttp.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/pp_counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/pp_counter.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/preprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/preprocessor.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/ttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/ttp.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/typeof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/typeof.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/config/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/config/workaround.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/count_args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/count_args.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/fold_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/fold_impl.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/fold_impl_body.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/fold_impl_body.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/front_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/front_impl.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/full_lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/full_lambda.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/has_apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/has_apply.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/has_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/has_begin.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/has_rebind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/has_rebind.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/has_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/has_size.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/has_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/has_tag.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/has_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/has_type.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/inserter_algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/inserter_algorithm.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/integral_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/integral_wrapper.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/is_msvc_eti_arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/is_msvc_eti_arg.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/iter_fold_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/iter_fold_impl.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/joint_iter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/joint_iter.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/lambda_arity_param.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/lambda_arity_param.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/lambda_no_ctps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/lambda_no_ctps.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/lambda_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/lambda_spec.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/lambda_support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/lambda_support.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/largest_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/largest_int.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/logical_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/logical_op.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/msvc_dtw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/msvc_dtw.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/msvc_eti_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/msvc_eti_base.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/msvc_is_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/msvc_is_class.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/msvc_never_true.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/msvc_never_true.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/msvc_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/msvc_type.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/na.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/na.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/na_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/na_assert.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/na_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/na_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/na_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/na_spec.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/nested_type_wknd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/nested_type_wknd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/nttp_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/nttp_decl.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/numeric_cast_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/numeric_cast_utils.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/numeric_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/numeric_op.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/pop_front_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/pop_front_impl.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/preprocessed/bcc/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/preprocessed/bcc/or.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/preprocessed/dmc/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/preprocessed/dmc/or.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/preprocessed/gcc/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/preprocessed/gcc/or.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/preprocessor/add.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/preprocessor/add.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/preprocessor/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/preprocessor/enum.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/preprocessor/params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/preprocessor/params.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/preprocessor/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/preprocessor/range.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/preprocessor/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/preprocessor/repeat.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/preprocessor/sub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/preprocessor/sub.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/preprocessor/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/preprocessor/tuple.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/push_back_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/push_back_impl.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/push_front_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/push_front_impl.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/reverse_fold_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/reverse_fold_impl.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/sequence_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/sequence_wrapper.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/size_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/size_impl.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/static_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/static_cast.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/template_arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/template_arity.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/template_arity_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/template_arity_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/traits_lambda_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/traits_lambda_spec.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/type_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/type_wrapper.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/value_wknd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/value_wknd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/aux_/yes_no.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/aux_/yes_no.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/back_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/back_inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/back_inserter.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/begin.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/begin_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/begin_end.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/begin_end_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/begin_end_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/bind.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/bind_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/bind_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/bitand.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/bitxor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/bitxor.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/bool.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/bool_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/bool_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/clear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/clear.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/clear_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/clear_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/copy.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/deref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/deref.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/distance.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/distance_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/distance_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/empty_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/empty_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/equal_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/equal_to.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/eval_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/eval_if.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/fold.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/front.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/front_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/front_inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/front_inserter.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/has_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/has_xxx.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/identity.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/if.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/inserter.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/int.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/int_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/int_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/integral_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/integral_c.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/integral_c_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/integral_c_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/integral_c_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/integral_c_tag.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/is_placeholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/is_placeholder.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/is_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/is_sequence.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/iter_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/iter_fold.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/iterator_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/iterator_range.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/iterator_tags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/iterator_tags.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/joint_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/joint_view.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/lambda.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/lambda_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/lambda_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/less.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/limits/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/limits/arity.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/limits/unrolling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/limits/unrolling.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/limits/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/limits/vector.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/logical.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/long.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/long_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/long_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/minus.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/negate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/negate.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/next.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/next.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/next_prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/next_prior.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/not.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/numeric_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/numeric_cast.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/or.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/placeholders.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/plus.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/pop_back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/pop_back_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/pop_front.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/pop_front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/pop_front_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/prior.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/protect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/protect.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/push_back.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/push_back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/push_back_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/push_front.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/push_front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/push_front_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/quote.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/remove.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/remove_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/remove_if.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/reverse_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/reverse_fold.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/same_as.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/same_as.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/sequence_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/sequence_tag.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/sequence_tag_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/sequence_tag_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/size.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/size_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/size_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/tag.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/O1_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/O1_size.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/at.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/back.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/begin_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/begin_end.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/clear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/clear.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/empty.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/front.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/item.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/iterator.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/numbered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/numbered.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/numbered_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/numbered_c.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/pop_back.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/pop_front.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/push_back.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/push_front.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/size.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/tag.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/aux_/vector0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/aux_/vector0.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/vector0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/vector0.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/vector0_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/vector0_c.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/vector10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/vector10.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/vector10_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/vector10_c.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/vector20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/vector20.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/vector20_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/vector20_c.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/vector30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/vector30.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/vector30_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/vector30_c.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/vector40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/vector40.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/vector40_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/vector40_c.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/vector50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/vector50.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/vector/vector50_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/vector/vector50_c.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/void.hpp -------------------------------------------------------------------------------- /coment/include/boost/mpl/void_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/mpl/void_fwd.hpp -------------------------------------------------------------------------------- /coment/include/boost/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/noncopyable.hpp -------------------------------------------------------------------------------- /coment/include/boost/pending/integer_log2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/pending/integer_log2.hpp -------------------------------------------------------------------------------- /coment/include/boost/pending/lowest_bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/pending/lowest_bit.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/arithmetic/add.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/arithmetic/add.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/arithmetic/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/arithmetic/dec.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/arithmetic/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/arithmetic/inc.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/arithmetic/sub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/arithmetic/sub.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/array/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/array/data.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/array/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/array/elem.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/array/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/array/enum.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/array/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/array/size.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/cat.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/comma_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/comma_if.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/config/config.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/control/expr_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/control/expr_if.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/control/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/control/if.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/control/iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/control/iif.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/control/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/control/while.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/debug/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/debug/assert.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/debug/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/debug/error.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/dec.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/detail/auto_rec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/detail/auto_rec.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/detail/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/detail/check.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/detail/split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/detail/split.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/empty.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/enum.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/enum_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/enum_params.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/expr_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/expr_if.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/facilities/is_1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/facilities/is_1.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/identity.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/inc.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/iterate.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/iteration/local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/iteration/local.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/iteration/self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/iteration/self.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/list/adt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/list/adt.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/list/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/list/fold_left.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/list/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/list/fold_right.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/list/for_each_i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/list/for_each_i.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/list/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/list/reverse.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/logical/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/logical/and.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/logical/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/logical/bitand.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/logical/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/logical/bool.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/logical/compl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/logical/compl.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/logical/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/logical/not.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/repeat.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/repetition/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/repetition/enum.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/repetition/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/repetition/for.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/seq/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/seq/elem.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/seq/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/seq/enum.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/seq/first_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/seq/first_n.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/seq/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/seq/fold_left.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/seq/rest_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/seq/rest_n.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/seq/seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/seq/seq.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/seq/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/seq/size.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/seq/subseq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/seq/subseq.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/slot/detail/def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/slot/detail/def.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/slot/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/slot/slot.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/stringize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/stringize.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/tuple/eat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/tuple/eat.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/tuple/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/tuple/elem.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/tuple/rem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/tuple/rem.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/tuple/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/tuple/size.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/tuple/to_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/tuple/to_list.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/tuple/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/tuple/to_seq.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/variadic/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/variadic/elem.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/variadic/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/variadic/size.hpp -------------------------------------------------------------------------------- /coment/include/boost/preprocessor/variadic/to_seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/preprocessor/variadic/to_seq.hpp -------------------------------------------------------------------------------- /coment/include/boost/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/static_assert.hpp -------------------------------------------------------------------------------- /coment/include/boost/throw_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/throw_exception.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dcomp_mem_fun.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dcomp_mem_fun.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/ddata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/ddata.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/ddeftype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/ddeftype.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dftclass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dftclass.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dfunction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dfunction.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dlambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dlambda.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dmem_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dmem_data.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dmem_fun.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dmem_fun.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dmem_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dmem_type.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dmetafunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dmetafunc.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dnotype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dnotype.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dnullptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dnullptr.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dplaceholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dplaceholder.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dptmf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dptmf.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dstatic_mem_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dstatic_mem_data.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dstatic_mem_fun.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dstatic_mem_fun.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dtclass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dtclass.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dtemplate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dtemplate.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dtemplate_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dtemplate_params.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dtfunction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dtfunction.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/detail/dtype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/detail/dtype.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/gen/has_data_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/gen/has_data_gen.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/gen/has_function_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/gen/has_function_gen.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/gen/has_member_data_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/gen/has_member_data_gen.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/gen/has_template_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/gen/has_template_gen.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/gen/has_type_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/gen/has_type_gen.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/gen/member_type_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/gen/member_type_gen.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/gen/namespace_gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/gen/namespace_gen.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/has_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/has_data.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/has_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/has_function.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/has_member_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/has_member_data.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/has_member_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/has_member_function.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/has_static_member_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/has_static_member_data.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/has_template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/has_template.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/has_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/has_type.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/member_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/member_type.hpp -------------------------------------------------------------------------------- /coment/include/boost/tti/tti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/tti/tti.hpp -------------------------------------------------------------------------------- /coment/include/boost/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/add_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/add_pointer.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/add_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/add_reference.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/config.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/detail/ice_eq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/detail/ice_eq.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/detail/ice_or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/detail/ice_or.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/ice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/ice.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/intrinsics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/intrinsics.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_abstract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_abstract.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_arithmetic.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_array.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_class.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_const.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_empty.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_enum.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_float.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_function.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_integral.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_pod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_pod.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_pointer.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_reference.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_same.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_scalar.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_stateless.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_stateless.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_union.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_void.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/is_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/is_volatile.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/remove_bounds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/remove_bounds.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/remove_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/remove_const.hpp -------------------------------------------------------------------------------- /coment/include/boost/type_traits/remove_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/type_traits/remove_cv.hpp -------------------------------------------------------------------------------- /coment/include/boost/utility/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/utility/addressof.hpp -------------------------------------------------------------------------------- /coment/include/boost/utility/declval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/utility/declval.hpp -------------------------------------------------------------------------------- /coment/include/boost/utility/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/utility/enable_if.hpp -------------------------------------------------------------------------------- /coment/include/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/boost/version.hpp -------------------------------------------------------------------------------- /coment/include/coment/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/Component.h -------------------------------------------------------------------------------- /coment/include/coment/DLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/DLL.h -------------------------------------------------------------------------------- /coment/include/coment/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/Entity.h -------------------------------------------------------------------------------- /coment/include/coment/Entity.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/Entity.inl -------------------------------------------------------------------------------- /coment/include/coment/SignalType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/SignalType.h -------------------------------------------------------------------------------- /coment/include/coment/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/World.h -------------------------------------------------------------------------------- /coment/include/coment/World.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/World.inl -------------------------------------------------------------------------------- /coment/include/coment/managers/ComponentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/managers/ComponentManager.h -------------------------------------------------------------------------------- /coment/include/coment/managers/EntityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/managers/EntityManager.h -------------------------------------------------------------------------------- /coment/include/coment/managers/EntityManager.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/managers/EntityManager.inl -------------------------------------------------------------------------------- /coment/include/coment/managers/Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/managers/Manager.h -------------------------------------------------------------------------------- /coment/include/coment/managers/Manager.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/managers/Manager.inl -------------------------------------------------------------------------------- /coment/include/coment/signals/Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/signals/Connection.h -------------------------------------------------------------------------------- /coment/include/coment/signals/Connection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/signals/Connection.inl -------------------------------------------------------------------------------- /coment/include/coment/signals/Observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/signals/Observer.h -------------------------------------------------------------------------------- /coment/include/coment/signals/Observer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/signals/Observer.inl -------------------------------------------------------------------------------- /coment/include/coment/signals/Signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/signals/Signal.h -------------------------------------------------------------------------------- /coment/include/coment/signals/Signal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/signals/Signal.inl -------------------------------------------------------------------------------- /coment/include/coment/systems/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/systems/System.h -------------------------------------------------------------------------------- /coment/include/coment/util/EntityMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/util/EntityMap.h -------------------------------------------------------------------------------- /coment/include/coment/util/EntityMap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/util/EntityMap.inl -------------------------------------------------------------------------------- /coment/include/coment/util/PriorityComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/util/PriorityComparator.h -------------------------------------------------------------------------------- /coment/include/coment/util/TypeEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/util/TypeEnumerator.h -------------------------------------------------------------------------------- /coment/include/coment/util/TypeEnumerator.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/util/TypeEnumerator.inl -------------------------------------------------------------------------------- /coment/include/coment/util/TypeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/util/TypeMap.h -------------------------------------------------------------------------------- /coment/include/coment/util/combined_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/util/combined_hash.h -------------------------------------------------------------------------------- /coment/include/coment/util/dynamic_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment/include/coment/util/dynamic_bitset.h -------------------------------------------------------------------------------- /coment_tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment_tests/Makefile -------------------------------------------------------------------------------- /coment_tests/coment_tests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment_tests/coment_tests.vcxproj -------------------------------------------------------------------------------- /coment_tests/coment_tests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment_tests/coment_tests.vcxproj.filters -------------------------------------------------------------------------------- /coment_tests/coment_tests.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment_tests/coment_tests.vcxproj.user -------------------------------------------------------------------------------- /coment_tests/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment_tests/src/main.cpp -------------------------------------------------------------------------------- /coment_tests/src/tests/util_tests/type_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/coment_tests/src/tests/util_tests/type_manager.cpp -------------------------------------------------------------------------------- /dep/include/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/dep/include/catch.hpp -------------------------------------------------------------------------------- /projectfiles/Windows/coment.VS2013.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/coment.VS2013.sln -------------------------------------------------------------------------------- /projectfiles/Windows/coment.VS2013.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/coment.VS2013.v12.suo -------------------------------------------------------------------------------- /projectfiles/Windows/dep/bin/Win32/Assimp32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/bin/Win32/Assimp32.dll -------------------------------------------------------------------------------- /projectfiles/Windows/dep/bin/Win32/FreeImage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/bin/Win32/FreeImage.dll -------------------------------------------------------------------------------- /projectfiles/Windows/dep/bin/Win32/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/bin/Win32/SDL2.dll -------------------------------------------------------------------------------- /projectfiles/Windows/dep/bin/Win32/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/bin/Win32/glew32.dll -------------------------------------------------------------------------------- /projectfiles/Windows/dep/bin/Win32/libclang.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/bin/Win32/libclang.dll -------------------------------------------------------------------------------- /projectfiles/Windows/dep/bin/x64/assimp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/bin/x64/assimp.dll -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/FreeImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/FreeImage.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/GL/glew.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/GL/glxew.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/GL/wglew.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_assert.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_atomic.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_audio.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_bits.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_config.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_endian.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_error.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_events.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_haptic.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_hints.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_loadso.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_log.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_main.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_mouse.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_mutex.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_name.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_opengl.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_pixels.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_power.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_quit.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_rect.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_render.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_rwops.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_shape.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_stdinc.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_system.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_syswm.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_test.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_thread.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_timer.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_touch.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_types.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/SDL_video.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/begin_code.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/SDL2/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/SDL2/close_code.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/Logger.hpp -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/anim.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/camera.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/cexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/cexport.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/cfileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/cfileio.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/cimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/cimport.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/color4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/color4.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/color4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/color4.inl -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/config.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/defs.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/light.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/material.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/mesh.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/scene.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/texture.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/types.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/vector2.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/vector3.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/assimp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/assimp/version.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/include/clang-c/Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/include/clang-c/Index.h -------------------------------------------------------------------------------- /projectfiles/Windows/dep/lib/Win32/FreeImage.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/lib/Win32/FreeImage.lib -------------------------------------------------------------------------------- /projectfiles/Windows/dep/lib/Win32/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/lib/Win32/SDL2.lib -------------------------------------------------------------------------------- /projectfiles/Windows/dep/lib/Win32/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/lib/Win32/SDL2main.lib -------------------------------------------------------------------------------- /projectfiles/Windows/dep/lib/Win32/assimp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/lib/Win32/assimp.lib -------------------------------------------------------------------------------- /projectfiles/Windows/dep/lib/Win32/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/lib/Win32/glew32.lib -------------------------------------------------------------------------------- /projectfiles/Windows/dep/lib/Win32/libclang.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/lib/Win32/libclang.exp -------------------------------------------------------------------------------- /projectfiles/Windows/dep/lib/Win32/libclang.imp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/lib/Win32/libclang.imp -------------------------------------------------------------------------------- /projectfiles/Windows/dep/lib/x64/assimp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/projectfiles/Windows/dep/lib/x64/assimp.lib -------------------------------------------------------------------------------- /samples/balls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/balls/Makefile -------------------------------------------------------------------------------- /samples/balls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/balls/README.md -------------------------------------------------------------------------------- /samples/balls/balls.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/balls/balls.vcxproj -------------------------------------------------------------------------------- /samples/balls/balls.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/balls/balls.vcxproj.filters -------------------------------------------------------------------------------- /samples/balls/balls.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/balls/balls.vcxproj.user -------------------------------------------------------------------------------- /samples/balls/include/components/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/balls/include/components/Color.h -------------------------------------------------------------------------------- /samples/balls/include/components/Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/balls/include/components/Position.h -------------------------------------------------------------------------------- /samples/balls/include/components/Radius.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/balls/include/components/Radius.h -------------------------------------------------------------------------------- /samples/balls/include/components/Velocity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/balls/include/components/Velocity.h -------------------------------------------------------------------------------- /samples/balls/include/systems/MovementSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/balls/include/systems/MovementSystem.h -------------------------------------------------------------------------------- /samples/balls/include/systems/RenderingSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/balls/include/systems/RenderingSystem.h -------------------------------------------------------------------------------- /samples/balls/src/balls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/balls/src/balls.cpp -------------------------------------------------------------------------------- /samples/common/README.md: -------------------------------------------------------------------------------- 1 |

common

2 | 3 | Shared sample lib -------------------------------------------------------------------------------- /samples/common/common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/common.vcxproj -------------------------------------------------------------------------------- /samples/common/common.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/common.vcxproj.filters -------------------------------------------------------------------------------- /samples/common/common.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/common.vcxproj.user -------------------------------------------------------------------------------- /samples/common/include/gl/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/gl/Texture.h -------------------------------------------------------------------------------- /samples/common/include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /samples/common/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/common.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/func_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/func_noise.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/func_noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/func_noise.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/precision.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /samples/common/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/exponential.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/ext.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/fwd.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/geometric.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/glm.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/multiple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/multiple.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/multiple.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/multiple.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/type_aligned.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /samples/common/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/integer.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/matrix.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/packing.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/vec2.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/vec3.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/vec4.hpp -------------------------------------------------------------------------------- /samples/common/include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /samples/common/include/resources/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/resources/Image.h -------------------------------------------------------------------------------- /samples/common/include/resources/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/resources/Mesh.h -------------------------------------------------------------------------------- /samples/common/include/util/ComputeShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/util/ComputeShader.h -------------------------------------------------------------------------------- /samples/common/include/util/FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/util/FileIO.h -------------------------------------------------------------------------------- /samples/common/include/util/MemoryLeakDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/util/MemoryLeakDetection.h -------------------------------------------------------------------------------- /samples/common/include/util/SDLWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/include/util/SDLWindow.h -------------------------------------------------------------------------------- /samples/common/src/gl/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/src/gl/Texture.cpp -------------------------------------------------------------------------------- /samples/common/src/resources/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/src/resources/Image.cpp -------------------------------------------------------------------------------- /samples/common/src/resources/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/src/resources/Mesh.cpp -------------------------------------------------------------------------------- /samples/common/src/util/MemoryLeakDetection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/src/util/MemoryLeakDetection.cpp -------------------------------------------------------------------------------- /samples/common/src/util/SDLWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchouli/coment/HEAD/samples/common/src/util/SDLWindow.cpp --------------------------------------------------------------------------------