rroonga 5.1.1-x64-mingw32 → 6.0.0-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +1 -1
- data/bin/grndump +9 -0
- data/doc/text/cross-compile.md +72 -0
- data/doc/text/install.md +121 -0
- data/doc/text/news.md +1451 -0
- data/doc/text/release.md +135 -0
- data/doc/text/tutorial.md +402 -0
- data/ext/groonga/rb-grn-column.c +54 -24
- data/ext/groonga/rb-grn-config.c +131 -10
- data/ext/groonga/rb-grn-context.c +0 -10
- data/ext/groonga/rb-grn-encoding.c +0 -2
- data/ext/groonga/rb-grn-expression.c +63 -3
- data/ext/groonga/rb-grn-index.c +34 -0
- data/ext/groonga/rb-grn-object.c +10 -10
- data/ext/groonga/rb-grn-operator.c +7 -0
- data/ext/groonga/rb-grn-plugin.c +39 -0
- data/ext/groonga/rb-grn-utils.c +5 -65
- data/ext/groonga/rb-grn.h +9 -9
- data/ext/groonga/rb-groonga.c +31 -1
- data/lib/2.1/groonga.so +0 -0
- data/lib/2.2/groonga.so +0 -0
- data/lib/2.3/groonga.so +0 -0
- data/lib/groonga.rb +1 -0
- data/lib/groonga/column.rb +13 -0
- data/lib/groonga/dumper.rb +3 -1
- data/lib/groonga/expression-builder.rb +66 -18
- data/lib/groonga/{expression-builder-19.rb → index.rb} +11 -19
- data/lib/groonga/record.rb +1 -1
- data/lib/rroonga.rb +16 -0
- data/rroonga-build.rb +6 -6
- data/rroonga.gemspec +1 -1
- data/test/groonga-test-utils.rb +0 -8
- data/test/test-column.rb +107 -1
- data/test/test-config.rb +18 -0
- data/test/test-database.rb +0 -2
- data/test/test-error-message.rb +20 -0
- data/test/test-expression-builder.rb +172 -29
- data/test/test-plugin.rb +25 -1
- data/test/test-table-dumper.rb +35 -6
- data/test/test-table-select.rb +0 -1
- data/vendor/local/bin/grndb.exe +0 -0
- data/vendor/local/bin/groonga-benchmark.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgcc_s_seh-1.dll +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-2.dll +0 -0
- data/vendor/local/bin/libmsgpack-4.dll +0 -0
- data/vendor/local/bin/libmsgpackc-2.dll +0 -0
- data/vendor/local/bin/libonig-5.dll +0 -0
- data/vendor/local/bin/libstdc++-6.dll +0 -0
- data/vendor/local/bin/lz4.exe +0 -0
- data/vendor/local/bin/lz4c.exe +0 -0
- data/vendor/local/bin/lz4cat +0 -0
- data/vendor/local/bin/mecab-config +5 -5
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/bin/onig-config +1 -1
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
- data/vendor/local/include/groonga/groonga.h +16 -11
- data/vendor/local/include/groonga/groonga/array.h +76 -0
- data/vendor/local/include/groonga/groonga/command.h +3 -5
- data/vendor/local/include/groonga/groonga/config.h +65 -0
- data/vendor/local/include/groonga/groonga/dat.h +100 -0
- data/vendor/local/include/groonga/groonga/dump.h +34 -0
- data/vendor/local/include/groonga/groonga/expr.h +21 -16
- data/vendor/local/include/groonga/groonga/file_reader.h +2 -5
- data/vendor/local/include/groonga/groonga/geo.h +2 -5
- data/vendor/local/include/groonga/groonga/groonga.h +28 -270
- data/vendor/local/include/groonga/groonga/hash.h +89 -0
- data/vendor/local/include/groonga/groonga/ii.h +3 -5
- data/vendor/local/include/groonga/groonga/nfkc.h +4 -5
- data/vendor/local/include/groonga/groonga/normalizer.h +3 -5
- data/vendor/local/include/groonga/groonga/obj.h +7 -5
- data/vendor/local/include/groonga/groonga/output.h +3 -5
- data/vendor/local/include/groonga/groonga/pat.h +102 -0
- data/vendor/local/include/groonga/groonga/plugin.h +29 -12
- data/vendor/local/include/groonga/groonga/portability.h +3 -5
- data/vendor/local/include/groonga/groonga/request_canceler.h +2 -5
- data/vendor/local/include/groonga/groonga/scorer.h +3 -5
- data/vendor/local/include/groonga/groonga/thread.h +2 -5
- data/vendor/local/include/groonga/groonga/token.h +5 -6
- data/vendor/local/include/groonga/groonga/token_filter.h +3 -5
- data/vendor/local/include/groonga/groonga/tokenizer.h +3 -5
- data/vendor/local/include/groonga/groonga/type.h +31 -0
- data/vendor/local/include/groonga/groonga/util.h +3 -5
- data/vendor/local/include/groonga/groonga/windows.h +2 -5
- data/vendor/local/include/groonga/groonga/windows_event_logger.h +2 -5
- data/vendor/local/include/mecab.h +1336 -96
- data/vendor/local/include/msgpack.h +3 -11
- data/vendor/local/include/msgpack.hpp +4 -11
- data/vendor/local/include/msgpack/adaptor/adaptor_base.hpp +84 -0
- data/vendor/local/include/msgpack/adaptor/array_ref.hpp +174 -0
- data/vendor/local/include/msgpack/adaptor/bool.hpp +41 -33
- data/vendor/local/include/msgpack/adaptor/boost/fusion.hpp +160 -0
- data/vendor/local/include/msgpack/adaptor/boost/msgpack_variant.hpp +430 -0
- data/vendor/local/include/msgpack/adaptor/boost/optional.hpp +96 -0
- data/vendor/local/include/msgpack/adaptor/boost/string_ref.hpp +87 -0
- data/vendor/local/include/msgpack/adaptor/char_ptr.hpp +132 -53
- data/vendor/local/include/msgpack/adaptor/check_container_size.hpp +18 -12
- data/vendor/local/include/msgpack/adaptor/cpp11/array.hpp +106 -44
- data/vendor/local/include/msgpack/adaptor/cpp11/array_char.hpp +59 -54
- data/vendor/local/include/msgpack/adaptor/cpp11/array_unsigned_char.hpp +89 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/forward_list.hpp +65 -46
- data/vendor/local/include/msgpack/adaptor/cpp11/reference_wrapper.hpp +68 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/shared_ptr.hpp +82 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/tuple.hpp +88 -64
- data/vendor/local/include/msgpack/adaptor/cpp11/unique_ptr.hpp +82 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map.hpp +151 -111
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set.hpp +142 -104
- data/vendor/local/include/msgpack/adaptor/define.hpp +15 -13
- data/vendor/local/include/msgpack/adaptor/deque.hpp +78 -53
- data/vendor/local/include/msgpack/adaptor/detail/{cpp03_define.hpp → cpp03_define_array.hpp} +225 -210
- data/vendor/local/include/msgpack/adaptor/detail/cpp03_define_map.hpp +2791 -0
- data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple.hpp +3070 -3079
- data/vendor/local/include/msgpack/adaptor/detail/{cpp11_define.hpp → cpp11_define_array.hpp} +71 -62
- data/vendor/local/include/msgpack/adaptor/detail/cpp11_define_map.hpp +163 -0
- data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple.hpp +105 -42
- data/vendor/local/include/msgpack/adaptor/ext.hpp +237 -0
- data/vendor/local/include/msgpack/adaptor/fixint.hpp +178 -92
- data/vendor/local/include/msgpack/adaptor/float.hpp +87 -69
- data/vendor/local/include/msgpack/adaptor/int.hpp +243 -123
- data/vendor/local/include/msgpack/adaptor/list.hpp +76 -53
- data/vendor/local/include/msgpack/adaptor/map.hpp +244 -157
- data/vendor/local/include/msgpack/adaptor/msgpack_tuple.hpp +3 -11
- data/vendor/local/include/msgpack/adaptor/nil.hpp +45 -29
- data/vendor/local/include/msgpack/adaptor/pair.hpp +58 -38
- data/vendor/local/include/msgpack/adaptor/raw.hpp +47 -39
- data/vendor/local/include/msgpack/adaptor/set.hpp +156 -102
- data/vendor/local/include/msgpack/adaptor/string.hpp +58 -50
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp +120 -113
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp +114 -106
- data/vendor/local/include/msgpack/adaptor/v4raw.hpp +106 -0
- data/vendor/local/include/msgpack/adaptor/vector.hpp +94 -60
- data/vendor/local/include/msgpack/adaptor/vector_bool.hpp +59 -51
- data/vendor/local/include/msgpack/adaptor/vector_char.hpp +62 -54
- data/vendor/local/include/msgpack/adaptor/vector_unsigned_char.hpp +89 -0
- data/vendor/local/include/msgpack/cpp_config.hpp +37 -22
- data/vendor/local/include/msgpack/detail/cpp03_zone.hpp +17 -11
- data/vendor/local/include/msgpack/detail/cpp11_zone.hpp +19 -19
- data/vendor/local/include/msgpack/fbuffer.h +3 -11
- data/vendor/local/include/msgpack/fbuffer.hpp +7 -11
- data/vendor/local/include/msgpack/gcc_atomic.h +3 -11
- data/vendor/local/include/msgpack/iterator.hpp +9 -13
- data/vendor/local/include/msgpack/meta.hpp +51 -0
- data/vendor/local/include/msgpack/object.h +3 -11
- data/vendor/local/include/msgpack/object.hpp +390 -290
- data/vendor/local/include/msgpack/object_fwd.hpp +57 -44
- data/vendor/local/include/msgpack/pack.h +6 -12
- data/vendor/local/include/msgpack/pack.hpp +58 -30
- data/vendor/local/include/msgpack/pack_define.h +3 -11
- data/vendor/local/include/msgpack/pack_template.h +35 -15
- data/vendor/local/include/msgpack/predef.h +19 -0
- data/vendor/local/include/msgpack/predef/architecture.h +30 -0
- data/vendor/local/include/msgpack/predef/architecture/alpha.h +60 -0
- data/vendor/local/include/msgpack/predef/architecture/arm.h +71 -0
- data/vendor/local/include/msgpack/predef/architecture/blackfin.h +47 -0
- data/vendor/local/include/msgpack/predef/architecture/convex.h +67 -0
- data/vendor/local/include/msgpack/predef/architecture/ia64.h +49 -0
- data/vendor/local/include/msgpack/predef/architecture/m68k.h +83 -0
- data/vendor/local/include/msgpack/predef/architecture/mips.h +74 -0
- data/vendor/local/include/msgpack/predef/architecture/parisc.h +65 -0
- data/vendor/local/include/msgpack/predef/architecture/ppc.h +73 -0
- data/vendor/local/include/msgpack/predef/architecture/pyramid.h +43 -0
- data/vendor/local/include/msgpack/predef/architecture/rs6k.h +56 -0
- data/vendor/local/include/msgpack/predef/architecture/sparc.h +55 -0
- data/vendor/local/include/msgpack/predef/architecture/superh.h +68 -0
- data/vendor/local/include/msgpack/predef/architecture/sys370.h +44 -0
- data/vendor/local/include/msgpack/predef/architecture/sys390.h +44 -0
- data/vendor/local/include/msgpack/predef/architecture/x86.h +38 -0
- data/vendor/local/include/msgpack/predef/architecture/x86/32.h +87 -0
- data/vendor/local/include/msgpack/predef/architecture/x86/64.h +50 -0
- data/vendor/local/include/msgpack/predef/architecture/z.h +43 -0
- data/vendor/local/include/msgpack/predef/compiler.h +41 -0
- data/vendor/local/include/msgpack/predef/compiler/borland.h +64 -0
- data/vendor/local/include/msgpack/predef/compiler/clang.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/comeau.h +62 -0
- data/vendor/local/include/msgpack/predef/compiler/compaq.h +67 -0
- data/vendor/local/include/msgpack/predef/compiler/diab.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/digitalmars.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/dignus.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/edg.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/ekopath.h +58 -0
- data/vendor/local/include/msgpack/predef/compiler/gcc.h +69 -0
- data/vendor/local/include/msgpack/predef/compiler/gcc_xml.h +53 -0
- data/vendor/local/include/msgpack/predef/compiler/greenhills.h +67 -0
- data/vendor/local/include/msgpack/predef/compiler/hp_acc.h +62 -0
- data/vendor/local/include/msgpack/predef/compiler/iar.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/ibm.h +73 -0
- data/vendor/local/include/msgpack/predef/compiler/intel.h +66 -0
- data/vendor/local/include/msgpack/predef/compiler/kai.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/llvm.h +58 -0
- data/vendor/local/include/msgpack/predef/compiler/metaware.h +54 -0
- data/vendor/local/include/msgpack/predef/compiler/metrowerks.h +78 -0
- data/vendor/local/include/msgpack/predef/compiler/microtec.h +54 -0
- data/vendor/local/include/msgpack/predef/compiler/mpw.h +64 -0
- data/vendor/local/include/msgpack/predef/compiler/palm.h +57 -0
- data/vendor/local/include/msgpack/predef/compiler/pgi.h +61 -0
- data/vendor/local/include/msgpack/predef/compiler/sgi_mipspro.h +67 -0
- data/vendor/local/include/msgpack/predef/compiler/sunpro.h +67 -0
- data/vendor/local/include/msgpack/predef/compiler/tendra.h +54 -0
- data/vendor/local/include/msgpack/predef/compiler/visualc.h +92 -0
- data/vendor/local/include/msgpack/predef/compiler/watcom.h +57 -0
- data/vendor/local/include/msgpack/predef/detail/_cassert.h +17 -0
- data/vendor/local/include/msgpack/predef/detail/_exception.h +15 -0
- data/vendor/local/include/msgpack/predef/detail/comp_detected.h +10 -0
- data/vendor/local/include/msgpack/predef/detail/endian_compat.h +26 -0
- data/vendor/local/include/msgpack/predef/detail/os_detected.h +10 -0
- data/vendor/local/include/msgpack/predef/detail/platform_detected.h +10 -0
- data/vendor/local/include/msgpack/predef/detail/test.h +17 -0
- data/vendor/local/include/msgpack/predef/language.h +15 -0
- data/vendor/local/include/msgpack/predef/language/objc.h +43 -0
- data/vendor/local/include/msgpack/predef/language/stdc.h +54 -0
- data/vendor/local/include/msgpack/predef/language/stdcpp.h +124 -0
- data/vendor/local/include/msgpack/predef/library.h +14 -0
- data/vendor/local/include/msgpack/predef/library/c.h +18 -0
- data/vendor/local/include/msgpack/predef/library/c/_prefix.h +13 -0
- data/vendor/local/include/msgpack/predef/library/c/gnu.h +62 -0
- data/vendor/local/include/msgpack/predef/library/c/uc.h +48 -0
- data/vendor/local/include/msgpack/predef/library/c/vms.h +48 -0
- data/vendor/local/include/msgpack/predef/library/c/zos.h +57 -0
- data/vendor/local/include/msgpack/predef/library/std.h +23 -0
- data/vendor/local/include/msgpack/predef/library/std/_prefix.h +23 -0
- data/vendor/local/include/msgpack/predef/library/std/cxx.h +47 -0
- data/vendor/local/include/msgpack/predef/library/std/dinkumware.h +53 -0
- data/vendor/local/include/msgpack/predef/library/std/libcomo.h +48 -0
- data/vendor/local/include/msgpack/predef/library/std/modena.h +46 -0
- data/vendor/local/include/msgpack/predef/library/std/msl.h +54 -0
- data/vendor/local/include/msgpack/predef/library/std/roguewave.h +57 -0
- data/vendor/local/include/msgpack/predef/library/std/sgi.h +52 -0
- data/vendor/local/include/msgpack/predef/library/std/stdcpp3.h +54 -0
- data/vendor/local/include/msgpack/predef/library/std/stlport.h +60 -0
- data/vendor/local/include/msgpack/predef/library/std/vacpp.h +45 -0
- data/vendor/local/include/msgpack/predef/make.h +89 -0
- data/vendor/local/include/msgpack/predef/os.h +31 -0
- data/vendor/local/include/msgpack/predef/os/aix.h +67 -0
- data/vendor/local/include/msgpack/predef/os/amigaos.h +47 -0
- data/vendor/local/include/msgpack/predef/os/android.h +46 -0
- data/vendor/local/include/msgpack/predef/os/beos.h +46 -0
- data/vendor/local/include/msgpack/predef/os/bsd.h +95 -0
- data/vendor/local/include/msgpack/predef/os/bsd/bsdi.h +48 -0
- data/vendor/local/include/msgpack/predef/os/bsd/dragonfly.h +50 -0
- data/vendor/local/include/msgpack/predef/os/bsd/free.h +60 -0
- data/vendor/local/include/msgpack/predef/os/bsd/net.h +84 -0
- data/vendor/local/include/msgpack/predef/os/bsd/open.h +171 -0
- data/vendor/local/include/msgpack/predef/os/cygwin.h +46 -0
- data/vendor/local/include/msgpack/predef/os/haiku.h +47 -0
- data/vendor/local/include/msgpack/predef/os/hpux.h +48 -0
- data/vendor/local/include/msgpack/predef/os/ios.h +51 -0
- data/vendor/local/include/msgpack/predef/os/irix.h +47 -0
- data/vendor/local/include/msgpack/predef/os/linux.h +47 -0
- data/vendor/local/include/msgpack/predef/os/macos.h +66 -0
- data/vendor/local/include/msgpack/predef/os/os400.h +46 -0
- data/vendor/local/include/msgpack/predef/os/qnxnto.h +60 -0
- data/vendor/local/include/msgpack/predef/os/solaris.h +47 -0
- data/vendor/local/include/msgpack/predef/os/unix.h +76 -0
- data/vendor/local/include/msgpack/predef/os/vms.h +53 -0
- data/vendor/local/include/msgpack/predef/os/windows.h +51 -0
- data/vendor/local/include/msgpack/predef/other.h +14 -0
- data/vendor/local/include/msgpack/predef/other/endian.h +205 -0
- data/vendor/local/include/msgpack/predef/platform.h +19 -0
- data/vendor/local/include/msgpack/predef/platform/mingw.h +70 -0
- data/vendor/local/include/msgpack/predef/platform/windows_desktop.h +44 -0
- data/vendor/local/include/msgpack/predef/platform/windows_phone.h +42 -0
- data/vendor/local/include/msgpack/predef/platform/windows_runtime.h +44 -0
- data/vendor/local/include/msgpack/predef/platform/windows_store.h +42 -0
- data/vendor/local/include/msgpack/predef/version.h +15 -0
- data/vendor/local/include/msgpack/predef/version_number.h +54 -0
- data/vendor/local/include/msgpack/preprocessor.hpp +19 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/add.hpp +51 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/dec.hpp +288 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/detail/div_base.hpp +61 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/div.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/inc.hpp +288 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/mod.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/mul.hpp +53 -0
- data/vendor/local/include/msgpack/preprocessor/arithmetic/sub.hpp +50 -0
- data/vendor/local/include/msgpack/preprocessor/array.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/array/data.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/array/detail/get_data.hpp +55 -0
- data/vendor/local/include/msgpack/preprocessor/array/elem.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/array/enum.hpp +33 -0
- data/vendor/local/include/msgpack/preprocessor/array/insert.hpp +55 -0
- data/vendor/local/include/msgpack/preprocessor/array/pop_back.hpp +37 -0
- data/vendor/local/include/msgpack/preprocessor/array/pop_front.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/array/push_back.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/array/push_front.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/array/remove.hpp +54 -0
- data/vendor/local/include/msgpack/preprocessor/array/replace.hpp +49 -0
- data/vendor/local/include/msgpack/preprocessor/array/reverse.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/array/size.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/array/to_list.hpp +47 -0
- data/vendor/local/include/msgpack/preprocessor/array/to_seq.hpp +46 -0
- data/vendor/local/include/msgpack/preprocessor/array/to_tuple.hpp +33 -0
- data/vendor/local/include/msgpack/preprocessor/assert_msg.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/cat.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/comma.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/comma_if.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/comparison.hpp +24 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/equal.hpp +34 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/greater.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/greater_equal.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/less.hpp +46 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/less_equal.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/comparison/not_equal.hpp +814 -0
- data/vendor/local/include/msgpack/preprocessor/config/config.hpp +101 -0
- data/vendor/local/include/msgpack/preprocessor/config/limits.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/control.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/control/deduce_d.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/control/detail/dmc/while.hpp +536 -0
- data/vendor/local/include/msgpack/preprocessor/control/detail/edg/while.hpp +534 -0
- data/vendor/local/include/msgpack/preprocessor/control/detail/msvc/while.hpp +277 -0
- data/vendor/local/include/msgpack/preprocessor/control/detail/while.hpp +536 -0
- data/vendor/local/include/msgpack/preprocessor/control/expr_if.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/control/expr_iif.hpp +31 -0
- data/vendor/local/include/msgpack/preprocessor/control/if.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/control/iif.hpp +34 -0
- data/vendor/local/include/msgpack/preprocessor/control/while.hpp +312 -0
- data/vendor/local/include/msgpack/preprocessor/debug.hpp +18 -0
- data/vendor/local/include/msgpack/preprocessor/debug/assert.hpp +44 -0
- data/vendor/local/include/msgpack/preprocessor/debug/error.hpp +33 -0
- data/vendor/local/include/msgpack/preprocessor/debug/line.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/dec.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/detail/auto_rec.hpp +293 -0
- data/vendor/local/include/msgpack/preprocessor/detail/check.hpp +48 -0
- data/vendor/local/include/msgpack/preprocessor/detail/dmc/auto_rec.hpp +286 -0
- data/vendor/local/include/msgpack/preprocessor/detail/is_binary.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/detail/is_nullary.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/detail/is_unary.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/detail/null.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/detail/split.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/empty.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum_params.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum_params_with_a_default.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum_params_with_defaults.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum_shifted.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/enum_shifted_params.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/expand.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/expr_if.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/facilities.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/apply.hpp +34 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/detail/is_empty.hpp +55 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/empty.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/expand.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/identity.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/intercept.hpp +277 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/is_1.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/is_empty.hpp +56 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/is_empty_or_1.hpp +31 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/is_empty_variadic.hpp +57 -0
- data/vendor/local/include/msgpack/preprocessor/facilities/overload.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/for.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/identity.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/if.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/inc.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/iterate.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/iteration.hpp +19 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower1.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower2.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower3.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower4.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower5.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper1.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper2.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper3.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper4.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper5.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/finish.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward1.hpp +1342 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward2.hpp +1338 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward3.hpp +1338 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward4.hpp +1338 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward5.hpp +1338 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse1.hpp +1296 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse2.hpp +1296 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse3.hpp +1296 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse4.hpp +1296 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse5.hpp +1296 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/local.hpp +812 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/rlocal.hpp +782 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/self.hpp +21 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/detail/start.hpp +99 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/iterate.hpp +82 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/local.hpp +26 -0
- data/vendor/local/include/msgpack/preprocessor/iteration/self.hpp +19 -0
- data/vendor/local/include/msgpack/preprocessor/library.hpp +36 -0
- data/vendor/local/include/msgpack/preprocessor/limits.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/list.hpp +37 -0
- data/vendor/local/include/msgpack/preprocessor/list/adt.hpp +73 -0
- data/vendor/local/include/msgpack/preprocessor/list/append.hpp +40 -0
- data/vendor/local/include/msgpack/preprocessor/list/at.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/list/cat.hpp +42 -0
- data/vendor/local/include/msgpack/preprocessor/list/detail/dmc/fold_left.hpp +279 -0
- data/vendor/local/include/msgpack/preprocessor/list/detail/edg/fold_left.hpp +536 -0
- data/vendor/local/include/msgpack/preprocessor/list/detail/edg/fold_right.hpp +794 -0
- data/vendor/local/include/msgpack/preprocessor/list/detail/fold_left.hpp +279 -0
- data/vendor/local/include/msgpack/preprocessor/list/detail/fold_right.hpp +277 -0
- data/vendor/local/include/msgpack/preprocessor/list/enum.hpp +41 -0
- data/vendor/local/include/msgpack/preprocessor/list/filter.hpp +54 -0
- data/vendor/local/include/msgpack/preprocessor/list/first_n.hpp +58 -0
- data/vendor/local/include/msgpack/preprocessor/list/fold_left.hpp +303 -0
- data/vendor/local/include/msgpack/preprocessor/list/fold_right.hpp +40 -0
- data/vendor/local/include/msgpack/preprocessor/list/for_each.hpp +49 -0
- data/vendor/local/include/msgpack/preprocessor/list/for_each_i.hpp +65 -0
- data/vendor/local/include/msgpack/preprocessor/list/for_each_product.hpp +141 -0
- data/vendor/local/include/msgpack/preprocessor/list/rest_n.hpp +55 -0
- data/vendor/local/include/msgpack/preprocessor/list/reverse.hpp +40 -0
- data/vendor/local/include/msgpack/preprocessor/list/size.hpp +58 -0
- data/vendor/local/include/msgpack/preprocessor/list/to_array.hpp +155 -0
- data/vendor/local/include/msgpack/preprocessor/list/to_seq.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/list/to_tuple.hpp +61 -0
- data/vendor/local/include/msgpack/preprocessor/list/transform.hpp +49 -0
- data/vendor/local/include/msgpack/preprocessor/logical.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/logical/and.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/logical/bitand.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/logical/bitnor.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/logical/bitor.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/logical/bitxor.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/logical/bool.hpp +288 -0
- data/vendor/local/include/msgpack/preprocessor/logical/compl.hpp +36 -0
- data/vendor/local/include/msgpack/preprocessor/logical/nor.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/logical/not.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/logical/or.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/logical/xor.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/max.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/min.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/comma.hpp +21 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/comma_if.hpp +31 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/detail/is_begin_parens.hpp +48 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/is_begin_parens.hpp +51 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/paren.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/paren_if.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/punctuation/remove_parens.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/repeat.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repeat_2nd.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repeat_3rd.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repeat_from_to.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repeat_from_to_2nd.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repeat_from_to_3rd.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/repetition.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/deduce_r.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/deduce_z.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/detail/dmc/for.hpp +536 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/detail/edg/for.hpp +534 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/detail/for.hpp +536 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/detail/msvc/for.hpp +277 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum.hpp +66 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_binary_params.hpp +54 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_params.hpp +41 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_params_with_a_default.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_params_with_defaults.hpp +24 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_shifted.hpp +68 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_shifted_binary_params.hpp +51 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_shifted_params.hpp +44 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_trailing.hpp +63 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_trailing_binary_params.hpp +53 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/enum_trailing_params.hpp +38 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/for.hpp +306 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/repeat.hpp +825 -0
- data/vendor/local/include/msgpack/preprocessor/repetition/repeat_from_to.hpp +87 -0
- data/vendor/local/include/msgpack/preprocessor/selection.hpp +18 -0
- data/vendor/local/include/msgpack/preprocessor/selection/max.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/selection/min.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/seq.hpp +44 -0
- data/vendor/local/include/msgpack/preprocessor/seq/cat.hpp +49 -0
- data/vendor/local/include/msgpack/preprocessor/seq/detail/binary_transform.hpp +48 -0
- data/vendor/local/include/msgpack/preprocessor/seq/detail/split.hpp +284 -0
- data/vendor/local/include/msgpack/preprocessor/seq/elem.hpp +304 -0
- data/vendor/local/include/msgpack/preprocessor/seq/enum.hpp +288 -0
- data/vendor/local/include/msgpack/preprocessor/seq/filter.hpp +54 -0
- data/vendor/local/include/msgpack/preprocessor/seq/first_n.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/seq/fold_left.hpp +1070 -0
- data/vendor/local/include/msgpack/preprocessor/seq/fold_right.hpp +288 -0
- data/vendor/local/include/msgpack/preprocessor/seq/for_each.hpp +60 -0
- data/vendor/local/include/msgpack/preprocessor/seq/for_each_i.hpp +61 -0
- data/vendor/local/include/msgpack/preprocessor/seq/for_each_product.hpp +126 -0
- data/vendor/local/include/msgpack/preprocessor/seq/insert.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/seq/pop_back.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/seq/pop_front.hpp +27 -0
- data/vendor/local/include/msgpack/preprocessor/seq/push_back.hpp +19 -0
- data/vendor/local/include/msgpack/preprocessor/seq/push_front.hpp +19 -0
- data/vendor/local/include/msgpack/preprocessor/seq/remove.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/seq/replace.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/seq/rest_n.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/seq/reverse.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/seq/seq.hpp +44 -0
- data/vendor/local/include/msgpack/preprocessor/seq/size.hpp +547 -0
- data/vendor/local/include/msgpack/preprocessor/seq/subseq.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/seq/to_array.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/seq/to_list.hpp +29 -0
- data/vendor/local/include/msgpack/preprocessor/seq/to_tuple.hpp +27 -0
- data/vendor/local/include/msgpack/preprocessor/seq/transform.hpp +48 -0
- data/vendor/local/include/msgpack/preprocessor/seq/variadic_seq_to_seq.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/slot.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/slot/counter.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/counter.hpp +269 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/def.hpp +49 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/shared.hpp +247 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/slot1.hpp +267 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/slot2.hpp +267 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/slot3.hpp +267 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/slot4.hpp +267 -0
- data/vendor/local/include/msgpack/preprocessor/slot/detail/slot5.hpp +267 -0
- data/vendor/local/include/msgpack/preprocessor/slot/slot.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/stringize.hpp +33 -0
- data/vendor/local/include/msgpack/preprocessor/tuple.hpp +35 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/detail/is_single_return.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/eat.hpp +106 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/elem.hpp +201 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/enum.hpp +22 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/insert.hpp +37 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/pop_back.hpp +64 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/pop_front.hpp +65 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/push_back.hpp +31 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/push_front.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/rem.hpp +149 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/remove.hpp +64 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/replace.hpp +37 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/reverse.hpp +117 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/size.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/to_array.hpp +39 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/to_list.hpp +118 -0
- data/vendor/local/include/msgpack/preprocessor/tuple/to_seq.hpp +119 -0
- data/vendor/local/include/msgpack/preprocessor/variadic.hpp +23 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/detail/is_single_return.hpp +28 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/elem.hpp +94 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/size.hpp +30 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/to_array.hpp +32 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/to_list.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/to_seq.hpp +25 -0
- data/vendor/local/include/msgpack/preprocessor/variadic/to_tuple.hpp +24 -0
- data/vendor/local/include/msgpack/preprocessor/while.hpp +17 -0
- data/vendor/local/include/msgpack/preprocessor/wstringize.hpp +29 -0
- data/vendor/local/include/msgpack/sbuffer.h +3 -11
- data/vendor/local/include/msgpack/sbuffer.hpp +34 -16
- data/vendor/local/include/msgpack/sysdep.h +102 -116
- data/vendor/local/include/msgpack/type.hpp +17 -0
- data/vendor/local/include/msgpack/unpack.h +3 -11
- data/vendor/local/include/msgpack/unpack.hpp +23 -47
- data/vendor/local/include/msgpack/unpack_define.h +3 -11
- data/vendor/local/include/msgpack/unpack_template.h +322 -328
- data/vendor/local/include/msgpack/util.h +3 -11
- data/vendor/local/include/msgpack/version.h +3 -11
- data/vendor/local/include/msgpack/version.hpp +3 -11
- data/vendor/local/include/msgpack/version_master.h +2 -2
- data/vendor/local/include/msgpack/versioning.hpp +27 -35
- data/vendor/local/include/msgpack/vrefbuffer.h +3 -11
- data/vendor/local/include/msgpack/vrefbuffer.hpp +7 -11
- data/vendor/local/include/msgpack/zbuffer.h +17 -25
- data/vendor/local/include/msgpack/zbuffer.hpp +9 -13
- data/vendor/local/include/msgpack/zone.h +3 -11
- data/vendor/local/include/msgpack/zone.hpp +3 -11
- data/vendor/local/lib/groonga/plugins/functions/string.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.la +41 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.la +4 -4
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +4 -4
- data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.la +4 -4
- data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.la +4 -4
- data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.la +4 -4
- data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.la +4 -4
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +4 -4
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +4 -4
- data/vendor/local/lib/groonga/scripts/ruby/accessor.rb +5 -0
- data/vendor/local/lib/groonga/scripts/ruby/command_line/grndb.rb +202 -90
- data/vendor/local/lib/groonga/scripts/ruby/command_line_parser.rb +156 -0
- data/vendor/local/lib/groonga/scripts/ruby/context.rb +2 -4
- data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters.rb +5 -5
- data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +2 -1
- data/vendor/local/lib/groonga/scripts/ruby/fixed_size_column.rb +5 -0
- data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +5 -0
- data/vendor/local/lib/groonga/scripts/ruby/logger.rb +1 -3
- data/vendor/local/lib/groonga/scripts/ruby/require.rb +4 -1
- data/vendor/local/lib/groonga/scripts/ruby/scan_info.rb +3 -0
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +29 -1
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +18 -14
- data/vendor/local/lib/groonga/scripts/ruby/table.rb +8 -0
- data/vendor/local/lib/groonga/scripts/ruby/table_cursor.rb +2 -0
- data/vendor/local/lib/groonga/scripts/ruby/variable_size_column.rb +5 -0
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +4 -4
- data/vendor/local/lib/liblz4.a +0 -0
- data/vendor/local/lib/liblz4.dll +0 -0
- data/vendor/local/lib/liblz4.dll.1 +0 -0
- data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmecab.la +4 -4
- data/vendor/local/lib/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpack.la +2 -2
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.la +2 -2
- data/vendor/local/lib/libonig.a +0 -0
- data/vendor/local/lib/libonig.dll.a +0 -0
- data/vendor/local/lib/libonig.la +4 -4
- data/vendor/local/lib/libz.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
- data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
- data/vendor/local/lib/pkgconfig/msgpack.pc +2 -2
- data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
- data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/sbin/groonga-httpd-restart +1 -1
- data/vendor/local/sbin/groonga-httpd.exe +0 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +5 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +288 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +2 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/alias.txt +164 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_geo.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/command/command_version.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_copy.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_delete.txt +95 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_get.txt +96 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_set.txt +96 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_acquire.txt +102 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_clear.txt +10 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_release.txt +98 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_exist.txt +7 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_inspect.txt +385 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_remove.txt +140 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/reindex.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/schema.txt +627 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_list.txt +3 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/configuration.txt +50 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/grndb.txt +41 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/operations/geolocation_search.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/regular_expression.txt +4 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/types.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/server/memcached.txt +1 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/server/package.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/basic.css +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/pygments.css +2 -0
- data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/client.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/community.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +57 -57
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +16 -16
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +16 -16
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/development.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/genindex.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/index.html +117 -97
- data/vendor/local/share/doc/groonga/en/html/install.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +20 -20
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +15 -15
- data/vendor/local/share/doc/groonga/en/html/install/others.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +13 -13
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +20 -20
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +15 -15
- data/vendor/local/share/doc/groonga/en/html/limitations.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news.html +350 -102
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/4.x.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +117 -97
- data/vendor/local/share/doc/groonga/en/html/reference/alias.html +447 -0
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +40 -40
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +21 -21
- data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +61 -53
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +255 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +239 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +237 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +35 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +31 -31
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +60 -60
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +35 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +247 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +43 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +246 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +31 -31
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +33 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +53 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +43 -43
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +63 -63
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +135 -135
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +43 -43
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +48 -48
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +41 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +43 -38
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +592 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +324 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +37 -37
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +33 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +1188 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +187 -187
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +41 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +56 -56
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +52 -52
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +35 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +42 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +37 -37
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +55 -55
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +178 -0
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +43 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +13 -13
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +20 -20
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +15 -15
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +47 -47
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +41 -41
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/operations.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/operations/prefix_rk_search.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +16 -16
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +18 -18
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +35 -35
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +40 -40
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +31 -31
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/server/http.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/memcached.html +8 -7
- data/vendor/local/share/doc/groonga/en/html/server/package.html +29 -29
- data/vendor/local/share/doc/groonga/en/html/spec.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +13 -13
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +16 -16
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +13 -13
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +13 -13
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +18 -18
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +18 -18
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +5 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +288 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +2 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/alias.txt +164 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_geo.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/command/command_version.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_copy.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_delete.txt +95 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_get.txt +96 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_set.txt +96 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_acquire.txt +102 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_clear.txt +10 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_release.txt +98 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_exist.txt +7 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_inspect.txt +385 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_remove.txt +140 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/reindex.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/schema.txt +627 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt +3 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/configuration.txt +50 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/grndb.txt +41 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/operations/geolocation_search.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/regular_expression.txt +4 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/types.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/memcached.txt +1 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/package.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/pygments.css +2 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/client.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/community.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +57 -57
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/development.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/index.html +116 -96
- data/vendor/local/share/doc/groonga/ja/html/install.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +15 -15
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +15 -15
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news.html +329 -100
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +116 -96
- data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +419 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +40 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +21 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +56 -48
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +15 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +254 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +235 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +234 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +35 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +46 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +60 -60
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +37 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +242 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +242 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +53 -53
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +63 -63
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +135 -135
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +43 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +48 -48
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +41 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +41 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +595 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +306 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +37 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +1196 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +187 -187
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +45 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +56 -56
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +52 -52
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +35 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +42 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +37 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +55 -55
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +167 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +35 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +35 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +15 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +48 -48
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +29 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +41 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +17 -17
- data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +18 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +35 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +40 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +46 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +8 -7
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/spec.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +16 -16
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +18 -18
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +18 -18
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +16 -16
- data/vendor/local/share/groonga/html/admin.old/index.html +1 -1
- data/vendor/local/share/groonga/html/admin.old/index.ja.html +1 -1
- data/vendor/local/share/groonga/html/admin.old/js/{jquery.flot-0.7.js → jquery.flot-0.8.3.js} +1540 -817
- data/vendor/local/share/groonga/html/admin.old/js/jquery.flot.license.txt +1 -1
- data/vendor/local/share/groonga/mruby/LEGAL +29 -29
- data/vendor/local/share/license/mruby/AUTHORS +3 -1
- data/vendor/local/share/license/mruby/MITL +1 -1
- data/vendor/local/share/license/mruby/README.md +13 -45
- data/vendor/local/share/license/msgpack/COPYING +4 -13
- data/vendor/local/share/license/msgpack/LICENSE_1_0.txt +23 -0
- data/vendor/local/share/license/msgpack/NOTICE +14 -0
- data/vendor/local/share/license/msgpack/{README → README.md} +4 -4
- data/vendor/local/share/man/ja/man1/groonga.1 +3429 -398
- data/vendor/local/share/man/man1/groonga.1 +3670 -500
- metadata +523 -89
- data/lib/2.0/groonga.so +0 -0
- data/vendor/local/bin/libmecab-1.dll +0 -0
- data/vendor/local/bin/libwinpthread-1.dll +0 -0
- data/vendor/local/include/groonga/groonga/conf.h +0 -42
- data/vendor/local/include/msgpack/adaptor/bool_fwd.hpp +0 -39
- data/vendor/local/include/msgpack/adaptor/char_ptr_fwd.hpp +0 -43
- data/vendor/local/include/msgpack/adaptor/cpp11/array_char_fwd.hpp +0 -45
- data/vendor/local/include/msgpack/adaptor/cpp11/array_fwd.hpp +0 -44
- data/vendor/local/include/msgpack/adaptor/cpp11/forward_list_fwd.hpp +0 -44
- data/vendor/local/include/msgpack/adaptor/cpp11/tuple_fwd.hpp +0 -62
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map_fwd.hpp +0 -53
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set_fwd.hpp +0 -52
- data/vendor/local/include/msgpack/adaptor/deque_fwd.hpp +0 -40
- data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple_fwd.hpp +0 -4341
- data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple_fwd.hpp +0 -84
- data/vendor/local/include/msgpack/adaptor/fixint_fwd.hpp +0 -100
- data/vendor/local/include/msgpack/adaptor/float_fwd.hpp +0 -44
- data/vendor/local/include/msgpack/adaptor/int_fwd.hpp +0 -100
- data/vendor/local/include/msgpack/adaptor/list_fwd.hpp +0 -40
- data/vendor/local/include/msgpack/adaptor/map_fwd.hpp +0 -69
- data/vendor/local/include/msgpack/adaptor/msgpack_tuple_fwd.hpp +0 -29
- data/vendor/local/include/msgpack/adaptor/nil_fwd.hpp +0 -51
- data/vendor/local/include/msgpack/adaptor/pair_fwd.hpp +0 -42
- data/vendor/local/include/msgpack/adaptor/raw_fwd.hpp +0 -50
- data/vendor/local/include/msgpack/adaptor/set_fwd.hpp +0 -52
- data/vendor/local/include/msgpack/adaptor/string_fwd.hpp +0 -42
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_map_fwd.hpp +0 -75
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_set_fwd.hpp +0 -75
- data/vendor/local/include/msgpack/adaptor/vector_bool_fwd.hpp +0 -40
- data/vendor/local/include/msgpack/adaptor/vector_char_fwd.hpp +0 -42
- data/vendor/local/include/msgpack/adaptor/vector_fwd.hpp +0 -42
- data/vendor/local/include/msgpack_fwd.hpp +0 -28
- data/vendor/local/share/license/msgpack/LICENSE +0 -202
@@ -0,0 +1,99 @@
|
|
1
|
+
# /* **************************************************************************
|
2
|
+
# * *
|
3
|
+
# * (C) Copyright Paul Mensonides 2002.
|
4
|
+
# * Distributed under the Boost Software License, Version 1.0. (See
|
5
|
+
# * accompanying file LICENSE_1_0.txt or copy at
|
6
|
+
# * http://www.boost.org/LICENSE_1_0.txt)
|
7
|
+
# * *
|
8
|
+
# ************************************************************************** */
|
9
|
+
#
|
10
|
+
# /* See http://www.boost.org for most recent version. */
|
11
|
+
#
|
12
|
+
# include <msgpack/preprocessor/slot/detail/shared.hpp>
|
13
|
+
#
|
14
|
+
# undef MSGPACK_PP_ITERATION_FINISH_3
|
15
|
+
#
|
16
|
+
# undef MSGPACK_PP_ITERATION_FINISH_3_DIGIT_1
|
17
|
+
# undef MSGPACK_PP_ITERATION_FINISH_3_DIGIT_2
|
18
|
+
# undef MSGPACK_PP_ITERATION_FINISH_3_DIGIT_3
|
19
|
+
# undef MSGPACK_PP_ITERATION_FINISH_3_DIGIT_4
|
20
|
+
# undef MSGPACK_PP_ITERATION_FINISH_3_DIGIT_5
|
21
|
+
# undef MSGPACK_PP_ITERATION_FINISH_3_DIGIT_6
|
22
|
+
# undef MSGPACK_PP_ITERATION_FINISH_3_DIGIT_7
|
23
|
+
# undef MSGPACK_PP_ITERATION_FINISH_3_DIGIT_8
|
24
|
+
# undef MSGPACK_PP_ITERATION_FINISH_3_DIGIT_9
|
25
|
+
# undef MSGPACK_PP_ITERATION_FINISH_3_DIGIT_10
|
26
|
+
#
|
27
|
+
# if MSGPACK_PP_SLOT_TEMP_3 == 0
|
28
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_3 0
|
29
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 1
|
30
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_3 1
|
31
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 2
|
32
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_3 2
|
33
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 3
|
34
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_3 3
|
35
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 4
|
36
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_3 4
|
37
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 5
|
38
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_3 5
|
39
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 6
|
40
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_3 6
|
41
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 7
|
42
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_3 7
|
43
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 8
|
44
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_3 8
|
45
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 9
|
46
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_3 9
|
47
|
+
# endif
|
48
|
+
#
|
49
|
+
# if MSGPACK_PP_SLOT_TEMP_2 == 0
|
50
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_2 0
|
51
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 1
|
52
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_2 1
|
53
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 2
|
54
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_2 2
|
55
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 3
|
56
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_2 3
|
57
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 4
|
58
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_2 4
|
59
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 5
|
60
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_2 5
|
61
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 6
|
62
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_2 6
|
63
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 7
|
64
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_2 7
|
65
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 8
|
66
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_2 8
|
67
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 9
|
68
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_2 9
|
69
|
+
# endif
|
70
|
+
#
|
71
|
+
# if MSGPACK_PP_SLOT_TEMP_1 == 0
|
72
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_1 0
|
73
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 1
|
74
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_1 1
|
75
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 2
|
76
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_1 2
|
77
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 3
|
78
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_1 3
|
79
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 4
|
80
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_1 4
|
81
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 5
|
82
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_1 5
|
83
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 6
|
84
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_1 6
|
85
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 7
|
86
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_1 7
|
87
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 8
|
88
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_1 8
|
89
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 9
|
90
|
+
# define MSGPACK_PP_ITERATION_FINISH_3_DIGIT_1 9
|
91
|
+
# endif
|
92
|
+
#
|
93
|
+
# if MSGPACK_PP_ITERATION_FINISH_3_DIGIT_3
|
94
|
+
# define MSGPACK_PP_ITERATION_FINISH_3 MSGPACK_PP_SLOT_CC_3(MSGPACK_PP_ITERATION_FINISH_3_DIGIT_3, MSGPACK_PP_ITERATION_FINISH_3_DIGIT_2, MSGPACK_PP_ITERATION_FINISH_3_DIGIT_1)
|
95
|
+
# elif MSGPACK_PP_ITERATION_FINISH_3_DIGIT_2
|
96
|
+
# define MSGPACK_PP_ITERATION_FINISH_3 MSGPACK_PP_SLOT_CC_2(MSGPACK_PP_ITERATION_FINISH_3_DIGIT_2, MSGPACK_PP_ITERATION_FINISH_3_DIGIT_1)
|
97
|
+
# else
|
98
|
+
# define MSGPACK_PP_ITERATION_FINISH_3 MSGPACK_PP_ITERATION_FINISH_3_DIGIT_1
|
99
|
+
# endif
|
@@ -0,0 +1,99 @@
|
|
1
|
+
# /* **************************************************************************
|
2
|
+
# * *
|
3
|
+
# * (C) Copyright Paul Mensonides 2002.
|
4
|
+
# * Distributed under the Boost Software License, Version 1.0. (See
|
5
|
+
# * accompanying file LICENSE_1_0.txt or copy at
|
6
|
+
# * http://www.boost.org/LICENSE_1_0.txt)
|
7
|
+
# * *
|
8
|
+
# ************************************************************************** */
|
9
|
+
#
|
10
|
+
# /* See http://www.boost.org for most recent version. */
|
11
|
+
#
|
12
|
+
# include <msgpack/preprocessor/slot/detail/shared.hpp>
|
13
|
+
#
|
14
|
+
# undef MSGPACK_PP_ITERATION_FINISH_4
|
15
|
+
#
|
16
|
+
# undef MSGPACK_PP_ITERATION_FINISH_4_DIGIT_1
|
17
|
+
# undef MSGPACK_PP_ITERATION_FINISH_4_DIGIT_2
|
18
|
+
# undef MSGPACK_PP_ITERATION_FINISH_4_DIGIT_3
|
19
|
+
# undef MSGPACK_PP_ITERATION_FINISH_4_DIGIT_4
|
20
|
+
# undef MSGPACK_PP_ITERATION_FINISH_4_DIGIT_5
|
21
|
+
# undef MSGPACK_PP_ITERATION_FINISH_4_DIGIT_6
|
22
|
+
# undef MSGPACK_PP_ITERATION_FINISH_4_DIGIT_7
|
23
|
+
# undef MSGPACK_PP_ITERATION_FINISH_4_DIGIT_8
|
24
|
+
# undef MSGPACK_PP_ITERATION_FINISH_4_DIGIT_9
|
25
|
+
# undef MSGPACK_PP_ITERATION_FINISH_4_DIGIT_10
|
26
|
+
#
|
27
|
+
# if MSGPACK_PP_SLOT_TEMP_3 == 0
|
28
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_3 0
|
29
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 1
|
30
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_3 1
|
31
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 2
|
32
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_3 2
|
33
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 3
|
34
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_3 3
|
35
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 4
|
36
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_3 4
|
37
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 5
|
38
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_3 5
|
39
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 6
|
40
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_3 6
|
41
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 7
|
42
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_3 7
|
43
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 8
|
44
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_3 8
|
45
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 9
|
46
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_3 9
|
47
|
+
# endif
|
48
|
+
#
|
49
|
+
# if MSGPACK_PP_SLOT_TEMP_2 == 0
|
50
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_2 0
|
51
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 1
|
52
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_2 1
|
53
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 2
|
54
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_2 2
|
55
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 3
|
56
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_2 3
|
57
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 4
|
58
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_2 4
|
59
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 5
|
60
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_2 5
|
61
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 6
|
62
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_2 6
|
63
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 7
|
64
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_2 7
|
65
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 8
|
66
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_2 8
|
67
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 9
|
68
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_2 9
|
69
|
+
# endif
|
70
|
+
#
|
71
|
+
# if MSGPACK_PP_SLOT_TEMP_1 == 0
|
72
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_1 0
|
73
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 1
|
74
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_1 1
|
75
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 2
|
76
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_1 2
|
77
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 3
|
78
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_1 3
|
79
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 4
|
80
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_1 4
|
81
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 5
|
82
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_1 5
|
83
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 6
|
84
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_1 6
|
85
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 7
|
86
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_1 7
|
87
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 8
|
88
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_1 8
|
89
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 9
|
90
|
+
# define MSGPACK_PP_ITERATION_FINISH_4_DIGIT_1 9
|
91
|
+
# endif
|
92
|
+
#
|
93
|
+
# if MSGPACK_PP_ITERATION_FINISH_4_DIGIT_3
|
94
|
+
# define MSGPACK_PP_ITERATION_FINISH_4 MSGPACK_PP_SLOT_CC_3(MSGPACK_PP_ITERATION_FINISH_4_DIGIT_3, MSGPACK_PP_ITERATION_FINISH_4_DIGIT_2, MSGPACK_PP_ITERATION_FINISH_4_DIGIT_1)
|
95
|
+
# elif MSGPACK_PP_ITERATION_FINISH_4_DIGIT_2
|
96
|
+
# define MSGPACK_PP_ITERATION_FINISH_4 MSGPACK_PP_SLOT_CC_2(MSGPACK_PP_ITERATION_FINISH_4_DIGIT_2, MSGPACK_PP_ITERATION_FINISH_4_DIGIT_1)
|
97
|
+
# else
|
98
|
+
# define MSGPACK_PP_ITERATION_FINISH_4 MSGPACK_PP_ITERATION_FINISH_4_DIGIT_1
|
99
|
+
# endif
|
@@ -0,0 +1,99 @@
|
|
1
|
+
# /* **************************************************************************
|
2
|
+
# * *
|
3
|
+
# * (C) Copyright Paul Mensonides 2002.
|
4
|
+
# * Distributed under the Boost Software License, Version 1.0. (See
|
5
|
+
# * accompanying file LICENSE_1_0.txt or copy at
|
6
|
+
# * http://www.boost.org/LICENSE_1_0.txt)
|
7
|
+
# * *
|
8
|
+
# ************************************************************************** */
|
9
|
+
#
|
10
|
+
# /* See http://www.boost.org for most recent version. */
|
11
|
+
#
|
12
|
+
# include <msgpack/preprocessor/slot/detail/shared.hpp>
|
13
|
+
#
|
14
|
+
# undef MSGPACK_PP_ITERATION_FINISH_5
|
15
|
+
#
|
16
|
+
# undef MSGPACK_PP_ITERATION_FINISH_5_DIGIT_1
|
17
|
+
# undef MSGPACK_PP_ITERATION_FINISH_5_DIGIT_2
|
18
|
+
# undef MSGPACK_PP_ITERATION_FINISH_5_DIGIT_3
|
19
|
+
# undef MSGPACK_PP_ITERATION_FINISH_5_DIGIT_4
|
20
|
+
# undef MSGPACK_PP_ITERATION_FINISH_5_DIGIT_5
|
21
|
+
# undef MSGPACK_PP_ITERATION_FINISH_5_DIGIT_6
|
22
|
+
# undef MSGPACK_PP_ITERATION_FINISH_5_DIGIT_7
|
23
|
+
# undef MSGPACK_PP_ITERATION_FINISH_5_DIGIT_8
|
24
|
+
# undef MSGPACK_PP_ITERATION_FINISH_5_DIGIT_9
|
25
|
+
# undef MSGPACK_PP_ITERATION_FINISH_5_DIGIT_10
|
26
|
+
#
|
27
|
+
# if MSGPACK_PP_SLOT_TEMP_3 == 0
|
28
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_3 0
|
29
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 1
|
30
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_3 1
|
31
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 2
|
32
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_3 2
|
33
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 3
|
34
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_3 3
|
35
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 4
|
36
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_3 4
|
37
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 5
|
38
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_3 5
|
39
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 6
|
40
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_3 6
|
41
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 7
|
42
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_3 7
|
43
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 8
|
44
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_3 8
|
45
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 9
|
46
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_3 9
|
47
|
+
# endif
|
48
|
+
#
|
49
|
+
# if MSGPACK_PP_SLOT_TEMP_2 == 0
|
50
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_2 0
|
51
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 1
|
52
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_2 1
|
53
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 2
|
54
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_2 2
|
55
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 3
|
56
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_2 3
|
57
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 4
|
58
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_2 4
|
59
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 5
|
60
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_2 5
|
61
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 6
|
62
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_2 6
|
63
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 7
|
64
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_2 7
|
65
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 8
|
66
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_2 8
|
67
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 9
|
68
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_2 9
|
69
|
+
# endif
|
70
|
+
#
|
71
|
+
# if MSGPACK_PP_SLOT_TEMP_1 == 0
|
72
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_1 0
|
73
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 1
|
74
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_1 1
|
75
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 2
|
76
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_1 2
|
77
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 3
|
78
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_1 3
|
79
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 4
|
80
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_1 4
|
81
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 5
|
82
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_1 5
|
83
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 6
|
84
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_1 6
|
85
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 7
|
86
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_1 7
|
87
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 8
|
88
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_1 8
|
89
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 9
|
90
|
+
# define MSGPACK_PP_ITERATION_FINISH_5_DIGIT_1 9
|
91
|
+
# endif
|
92
|
+
#
|
93
|
+
# if MSGPACK_PP_ITERATION_FINISH_5_DIGIT_3
|
94
|
+
# define MSGPACK_PP_ITERATION_FINISH_5 MSGPACK_PP_SLOT_CC_3(MSGPACK_PP_ITERATION_FINISH_5_DIGIT_3, MSGPACK_PP_ITERATION_FINISH_5_DIGIT_2, MSGPACK_PP_ITERATION_FINISH_5_DIGIT_1)
|
95
|
+
# elif MSGPACK_PP_ITERATION_FINISH_5_DIGIT_2
|
96
|
+
# define MSGPACK_PP_ITERATION_FINISH_5 MSGPACK_PP_SLOT_CC_2(MSGPACK_PP_ITERATION_FINISH_5_DIGIT_2, MSGPACK_PP_ITERATION_FINISH_5_DIGIT_1)
|
97
|
+
# else
|
98
|
+
# define MSGPACK_PP_ITERATION_FINISH_5 MSGPACK_PP_ITERATION_FINISH_5_DIGIT_1
|
99
|
+
# endif
|
@@ -0,0 +1,99 @@
|
|
1
|
+
# /* **************************************************************************
|
2
|
+
# * *
|
3
|
+
# * (C) Copyright Paul Mensonides 2002.
|
4
|
+
# * Distributed under the Boost Software License, Version 1.0. (See
|
5
|
+
# * accompanying file LICENSE_1_0.txt or copy at
|
6
|
+
# * http://www.boost.org/LICENSE_1_0.txt)
|
7
|
+
# * *
|
8
|
+
# ************************************************************************** */
|
9
|
+
#
|
10
|
+
# /* See http://www.boost.org for most recent version. */
|
11
|
+
#
|
12
|
+
# include <msgpack/preprocessor/slot/detail/shared.hpp>
|
13
|
+
#
|
14
|
+
# undef MSGPACK_PP_LOCAL_FE
|
15
|
+
#
|
16
|
+
# undef MSGPACK_PP_LOCAL_FE_DIGIT_1
|
17
|
+
# undef MSGPACK_PP_LOCAL_FE_DIGIT_2
|
18
|
+
# undef MSGPACK_PP_LOCAL_FE_DIGIT_3
|
19
|
+
# undef MSGPACK_PP_LOCAL_FE_DIGIT_4
|
20
|
+
# undef MSGPACK_PP_LOCAL_FE_DIGIT_5
|
21
|
+
# undef MSGPACK_PP_LOCAL_FE_DIGIT_6
|
22
|
+
# undef MSGPACK_PP_LOCAL_FE_DIGIT_7
|
23
|
+
# undef MSGPACK_PP_LOCAL_FE_DIGIT_8
|
24
|
+
# undef MSGPACK_PP_LOCAL_FE_DIGIT_9
|
25
|
+
# undef MSGPACK_PP_LOCAL_FE_DIGIT_10
|
26
|
+
#
|
27
|
+
# if MSGPACK_PP_SLOT_TEMP_3 == 0
|
28
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_3 0
|
29
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 1
|
30
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_3 1
|
31
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 2
|
32
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_3 2
|
33
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 3
|
34
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_3 3
|
35
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 4
|
36
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_3 4
|
37
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 5
|
38
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_3 5
|
39
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 6
|
40
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_3 6
|
41
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 7
|
42
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_3 7
|
43
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 8
|
44
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_3 8
|
45
|
+
# elif MSGPACK_PP_SLOT_TEMP_3 == 9
|
46
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_3 9
|
47
|
+
# endif
|
48
|
+
#
|
49
|
+
# if MSGPACK_PP_SLOT_TEMP_2 == 0
|
50
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_2 0
|
51
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 1
|
52
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_2 1
|
53
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 2
|
54
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_2 2
|
55
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 3
|
56
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_2 3
|
57
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 4
|
58
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_2 4
|
59
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 5
|
60
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_2 5
|
61
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 6
|
62
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_2 6
|
63
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 7
|
64
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_2 7
|
65
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 8
|
66
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_2 8
|
67
|
+
# elif MSGPACK_PP_SLOT_TEMP_2 == 9
|
68
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_2 9
|
69
|
+
# endif
|
70
|
+
#
|
71
|
+
# if MSGPACK_PP_SLOT_TEMP_1 == 0
|
72
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_1 0
|
73
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 1
|
74
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_1 1
|
75
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 2
|
76
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_1 2
|
77
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 3
|
78
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_1 3
|
79
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 4
|
80
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_1 4
|
81
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 5
|
82
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_1 5
|
83
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 6
|
84
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_1 6
|
85
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 7
|
86
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_1 7
|
87
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 8
|
88
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_1 8
|
89
|
+
# elif MSGPACK_PP_SLOT_TEMP_1 == 9
|
90
|
+
# define MSGPACK_PP_LOCAL_FE_DIGIT_1 9
|
91
|
+
# endif
|
92
|
+
#
|
93
|
+
# if MSGPACK_PP_LOCAL_FE_DIGIT_3
|
94
|
+
# define MSGPACK_PP_LOCAL_FE() MSGPACK_PP_SLOT_CC_3(MSGPACK_PP_LOCAL_FE_DIGIT_3, MSGPACK_PP_LOCAL_FE_DIGIT_2, MSGPACK_PP_LOCAL_FE_DIGIT_1)
|
95
|
+
# elif MSGPACK_PP_LOCAL_FE_DIGIT_2
|
96
|
+
# define MSGPACK_PP_LOCAL_FE() MSGPACK_PP_SLOT_CC_2(MSGPACK_PP_LOCAL_FE_DIGIT_2, MSGPACK_PP_LOCAL_FE_DIGIT_1)
|
97
|
+
# else
|
98
|
+
# define MSGPACK_PP_LOCAL_FE() MSGPACK_PP_LOCAL_FE_DIGIT_1
|
99
|
+
# endif
|
@@ -0,0 +1,1342 @@
|
|
1
|
+
# /* **************************************************************************
|
2
|
+
# * *
|
3
|
+
# * (C) Copyright Paul Mensonides 2002.
|
4
|
+
# * Distributed under the Boost Software License, Version 1.0. (See
|
5
|
+
# * accompanying file LICENSE_1_0.txt or copy at
|
6
|
+
# * http://www.boost.org/LICENSE_1_0.txt)
|
7
|
+
# * *
|
8
|
+
# ************************************************************************** */
|
9
|
+
#
|
10
|
+
# /* See http://www.boost.org for most recent version. */
|
11
|
+
#
|
12
|
+
# if defined(MSGPACK_PP_ITERATION_LIMITS)
|
13
|
+
# if !defined(MSGPACK_PP_FILENAME_1)
|
14
|
+
# error MSGPACK_PP_ERROR: depth #1 filename is not defined
|
15
|
+
# endif
|
16
|
+
# define MSGPACK_PP_VALUE MSGPACK_PP_TUPLE_ELEM(2, 0, MSGPACK_PP_ITERATION_LIMITS)
|
17
|
+
# include <msgpack/preprocessor/iteration/detail/bounds/lower1.hpp>
|
18
|
+
# define MSGPACK_PP_VALUE MSGPACK_PP_TUPLE_ELEM(2, 1, MSGPACK_PP_ITERATION_LIMITS)
|
19
|
+
# include <msgpack/preprocessor/iteration/detail/bounds/upper1.hpp>
|
20
|
+
# define MSGPACK_PP_ITERATION_FLAGS_1() 0
|
21
|
+
# undef MSGPACK_PP_ITERATION_LIMITS
|
22
|
+
# elif defined(MSGPACK_PP_ITERATION_PARAMS_1)
|
23
|
+
# define MSGPACK_PP_VALUE MSGPACK_PP_ARRAY_ELEM(0, MSGPACK_PP_ITERATION_PARAMS_1)
|
24
|
+
# include <msgpack/preprocessor/iteration/detail/bounds/lower1.hpp>
|
25
|
+
# define MSGPACK_PP_VALUE MSGPACK_PP_ARRAY_ELEM(1, MSGPACK_PP_ITERATION_PARAMS_1)
|
26
|
+
# include <msgpack/preprocessor/iteration/detail/bounds/upper1.hpp>
|
27
|
+
# define MSGPACK_PP_FILENAME_1 MSGPACK_PP_ARRAY_ELEM(2, MSGPACK_PP_ITERATION_PARAMS_1)
|
28
|
+
# if MSGPACK_PP_ARRAY_SIZE(MSGPACK_PP_ITERATION_PARAMS_1) >= 4
|
29
|
+
# define MSGPACK_PP_ITERATION_FLAGS_1() MSGPACK_PP_ARRAY_ELEM(3, MSGPACK_PP_ITERATION_PARAMS_1)
|
30
|
+
# else
|
31
|
+
# define MSGPACK_PP_ITERATION_FLAGS_1() 0
|
32
|
+
# endif
|
33
|
+
# else
|
34
|
+
# error MSGPACK_PP_ERROR: depth #1 iteration boundaries or filename not defined
|
35
|
+
# endif
|
36
|
+
#
|
37
|
+
# undef MSGPACK_PP_ITERATION_DEPTH
|
38
|
+
# define MSGPACK_PP_ITERATION_DEPTH() 1
|
39
|
+
#
|
40
|
+
# define MSGPACK_PP_IS_ITERATING 1
|
41
|
+
#
|
42
|
+
# if (MSGPACK_PP_ITERATION_START_1) > (MSGPACK_PP_ITERATION_FINISH_1)
|
43
|
+
# include <msgpack/preprocessor/iteration/detail/iter/reverse1.hpp>
|
44
|
+
# else
|
45
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 0 && MSGPACK_PP_ITERATION_FINISH_1 >= 0
|
46
|
+
# define MSGPACK_PP_ITERATION_1 0
|
47
|
+
# include MSGPACK_PP_FILENAME_1
|
48
|
+
# undef MSGPACK_PP_ITERATION_1
|
49
|
+
# endif
|
50
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 1 && MSGPACK_PP_ITERATION_FINISH_1 >= 1
|
51
|
+
# define MSGPACK_PP_ITERATION_1 1
|
52
|
+
# include MSGPACK_PP_FILENAME_1
|
53
|
+
# undef MSGPACK_PP_ITERATION_1
|
54
|
+
# endif
|
55
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 2 && MSGPACK_PP_ITERATION_FINISH_1 >= 2
|
56
|
+
# define MSGPACK_PP_ITERATION_1 2
|
57
|
+
# include MSGPACK_PP_FILENAME_1
|
58
|
+
# undef MSGPACK_PP_ITERATION_1
|
59
|
+
# endif
|
60
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 3 && MSGPACK_PP_ITERATION_FINISH_1 >= 3
|
61
|
+
# define MSGPACK_PP_ITERATION_1 3
|
62
|
+
# include MSGPACK_PP_FILENAME_1
|
63
|
+
# undef MSGPACK_PP_ITERATION_1
|
64
|
+
# endif
|
65
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 4 && MSGPACK_PP_ITERATION_FINISH_1 >= 4
|
66
|
+
# define MSGPACK_PP_ITERATION_1 4
|
67
|
+
# include MSGPACK_PP_FILENAME_1
|
68
|
+
# undef MSGPACK_PP_ITERATION_1
|
69
|
+
# endif
|
70
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 5 && MSGPACK_PP_ITERATION_FINISH_1 >= 5
|
71
|
+
# define MSGPACK_PP_ITERATION_1 5
|
72
|
+
# include MSGPACK_PP_FILENAME_1
|
73
|
+
# undef MSGPACK_PP_ITERATION_1
|
74
|
+
# endif
|
75
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 6 && MSGPACK_PP_ITERATION_FINISH_1 >= 6
|
76
|
+
# define MSGPACK_PP_ITERATION_1 6
|
77
|
+
# include MSGPACK_PP_FILENAME_1
|
78
|
+
# undef MSGPACK_PP_ITERATION_1
|
79
|
+
# endif
|
80
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 7 && MSGPACK_PP_ITERATION_FINISH_1 >= 7
|
81
|
+
# define MSGPACK_PP_ITERATION_1 7
|
82
|
+
# include MSGPACK_PP_FILENAME_1
|
83
|
+
# undef MSGPACK_PP_ITERATION_1
|
84
|
+
# endif
|
85
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 8 && MSGPACK_PP_ITERATION_FINISH_1 >= 8
|
86
|
+
# define MSGPACK_PP_ITERATION_1 8
|
87
|
+
# include MSGPACK_PP_FILENAME_1
|
88
|
+
# undef MSGPACK_PP_ITERATION_1
|
89
|
+
# endif
|
90
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 9 && MSGPACK_PP_ITERATION_FINISH_1 >= 9
|
91
|
+
# define MSGPACK_PP_ITERATION_1 9
|
92
|
+
# include MSGPACK_PP_FILENAME_1
|
93
|
+
# undef MSGPACK_PP_ITERATION_1
|
94
|
+
# endif
|
95
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 10 && MSGPACK_PP_ITERATION_FINISH_1 >= 10
|
96
|
+
# define MSGPACK_PP_ITERATION_1 10
|
97
|
+
# include MSGPACK_PP_FILENAME_1
|
98
|
+
# undef MSGPACK_PP_ITERATION_1
|
99
|
+
# endif
|
100
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 11 && MSGPACK_PP_ITERATION_FINISH_1 >= 11
|
101
|
+
# define MSGPACK_PP_ITERATION_1 11
|
102
|
+
# include MSGPACK_PP_FILENAME_1
|
103
|
+
# undef MSGPACK_PP_ITERATION_1
|
104
|
+
# endif
|
105
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 12 && MSGPACK_PP_ITERATION_FINISH_1 >= 12
|
106
|
+
# define MSGPACK_PP_ITERATION_1 12
|
107
|
+
# include MSGPACK_PP_FILENAME_1
|
108
|
+
# undef MSGPACK_PP_ITERATION_1
|
109
|
+
# endif
|
110
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 13 && MSGPACK_PP_ITERATION_FINISH_1 >= 13
|
111
|
+
# define MSGPACK_PP_ITERATION_1 13
|
112
|
+
# include MSGPACK_PP_FILENAME_1
|
113
|
+
# undef MSGPACK_PP_ITERATION_1
|
114
|
+
# endif
|
115
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 14 && MSGPACK_PP_ITERATION_FINISH_1 >= 14
|
116
|
+
# define MSGPACK_PP_ITERATION_1 14
|
117
|
+
# include MSGPACK_PP_FILENAME_1
|
118
|
+
# undef MSGPACK_PP_ITERATION_1
|
119
|
+
# endif
|
120
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 15 && MSGPACK_PP_ITERATION_FINISH_1 >= 15
|
121
|
+
# define MSGPACK_PP_ITERATION_1 15
|
122
|
+
# include MSGPACK_PP_FILENAME_1
|
123
|
+
# undef MSGPACK_PP_ITERATION_1
|
124
|
+
# endif
|
125
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 16 && MSGPACK_PP_ITERATION_FINISH_1 >= 16
|
126
|
+
# define MSGPACK_PP_ITERATION_1 16
|
127
|
+
# include MSGPACK_PP_FILENAME_1
|
128
|
+
# undef MSGPACK_PP_ITERATION_1
|
129
|
+
# endif
|
130
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 17 && MSGPACK_PP_ITERATION_FINISH_1 >= 17
|
131
|
+
# define MSGPACK_PP_ITERATION_1 17
|
132
|
+
# include MSGPACK_PP_FILENAME_1
|
133
|
+
# undef MSGPACK_PP_ITERATION_1
|
134
|
+
# endif
|
135
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 18 && MSGPACK_PP_ITERATION_FINISH_1 >= 18
|
136
|
+
# define MSGPACK_PP_ITERATION_1 18
|
137
|
+
# include MSGPACK_PP_FILENAME_1
|
138
|
+
# undef MSGPACK_PP_ITERATION_1
|
139
|
+
# endif
|
140
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 19 && MSGPACK_PP_ITERATION_FINISH_1 >= 19
|
141
|
+
# define MSGPACK_PP_ITERATION_1 19
|
142
|
+
# include MSGPACK_PP_FILENAME_1
|
143
|
+
# undef MSGPACK_PP_ITERATION_1
|
144
|
+
# endif
|
145
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 20 && MSGPACK_PP_ITERATION_FINISH_1 >= 20
|
146
|
+
# define MSGPACK_PP_ITERATION_1 20
|
147
|
+
# include MSGPACK_PP_FILENAME_1
|
148
|
+
# undef MSGPACK_PP_ITERATION_1
|
149
|
+
# endif
|
150
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 21 && MSGPACK_PP_ITERATION_FINISH_1 >= 21
|
151
|
+
# define MSGPACK_PP_ITERATION_1 21
|
152
|
+
# include MSGPACK_PP_FILENAME_1
|
153
|
+
# undef MSGPACK_PP_ITERATION_1
|
154
|
+
# endif
|
155
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 22 && MSGPACK_PP_ITERATION_FINISH_1 >= 22
|
156
|
+
# define MSGPACK_PP_ITERATION_1 22
|
157
|
+
# include MSGPACK_PP_FILENAME_1
|
158
|
+
# undef MSGPACK_PP_ITERATION_1
|
159
|
+
# endif
|
160
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 23 && MSGPACK_PP_ITERATION_FINISH_1 >= 23
|
161
|
+
# define MSGPACK_PP_ITERATION_1 23
|
162
|
+
# include MSGPACK_PP_FILENAME_1
|
163
|
+
# undef MSGPACK_PP_ITERATION_1
|
164
|
+
# endif
|
165
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 24 && MSGPACK_PP_ITERATION_FINISH_1 >= 24
|
166
|
+
# define MSGPACK_PP_ITERATION_1 24
|
167
|
+
# include MSGPACK_PP_FILENAME_1
|
168
|
+
# undef MSGPACK_PP_ITERATION_1
|
169
|
+
# endif
|
170
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 25 && MSGPACK_PP_ITERATION_FINISH_1 >= 25
|
171
|
+
# define MSGPACK_PP_ITERATION_1 25
|
172
|
+
# include MSGPACK_PP_FILENAME_1
|
173
|
+
# undef MSGPACK_PP_ITERATION_1
|
174
|
+
# endif
|
175
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 26 && MSGPACK_PP_ITERATION_FINISH_1 >= 26
|
176
|
+
# define MSGPACK_PP_ITERATION_1 26
|
177
|
+
# include MSGPACK_PP_FILENAME_1
|
178
|
+
# undef MSGPACK_PP_ITERATION_1
|
179
|
+
# endif
|
180
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 27 && MSGPACK_PP_ITERATION_FINISH_1 >= 27
|
181
|
+
# define MSGPACK_PP_ITERATION_1 27
|
182
|
+
# include MSGPACK_PP_FILENAME_1
|
183
|
+
# undef MSGPACK_PP_ITERATION_1
|
184
|
+
# endif
|
185
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 28 && MSGPACK_PP_ITERATION_FINISH_1 >= 28
|
186
|
+
# define MSGPACK_PP_ITERATION_1 28
|
187
|
+
# include MSGPACK_PP_FILENAME_1
|
188
|
+
# undef MSGPACK_PP_ITERATION_1
|
189
|
+
# endif
|
190
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 29 && MSGPACK_PP_ITERATION_FINISH_1 >= 29
|
191
|
+
# define MSGPACK_PP_ITERATION_1 29
|
192
|
+
# include MSGPACK_PP_FILENAME_1
|
193
|
+
# undef MSGPACK_PP_ITERATION_1
|
194
|
+
# endif
|
195
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 30 && MSGPACK_PP_ITERATION_FINISH_1 >= 30
|
196
|
+
# define MSGPACK_PP_ITERATION_1 30
|
197
|
+
# include MSGPACK_PP_FILENAME_1
|
198
|
+
# undef MSGPACK_PP_ITERATION_1
|
199
|
+
# endif
|
200
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 31 && MSGPACK_PP_ITERATION_FINISH_1 >= 31
|
201
|
+
# define MSGPACK_PP_ITERATION_1 31
|
202
|
+
# include MSGPACK_PP_FILENAME_1
|
203
|
+
# undef MSGPACK_PP_ITERATION_1
|
204
|
+
# endif
|
205
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 32 && MSGPACK_PP_ITERATION_FINISH_1 >= 32
|
206
|
+
# define MSGPACK_PP_ITERATION_1 32
|
207
|
+
# include MSGPACK_PP_FILENAME_1
|
208
|
+
# undef MSGPACK_PP_ITERATION_1
|
209
|
+
# endif
|
210
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 33 && MSGPACK_PP_ITERATION_FINISH_1 >= 33
|
211
|
+
# define MSGPACK_PP_ITERATION_1 33
|
212
|
+
# include MSGPACK_PP_FILENAME_1
|
213
|
+
# undef MSGPACK_PP_ITERATION_1
|
214
|
+
# endif
|
215
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 34 && MSGPACK_PP_ITERATION_FINISH_1 >= 34
|
216
|
+
# define MSGPACK_PP_ITERATION_1 34
|
217
|
+
# include MSGPACK_PP_FILENAME_1
|
218
|
+
# undef MSGPACK_PP_ITERATION_1
|
219
|
+
# endif
|
220
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 35 && MSGPACK_PP_ITERATION_FINISH_1 >= 35
|
221
|
+
# define MSGPACK_PP_ITERATION_1 35
|
222
|
+
# include MSGPACK_PP_FILENAME_1
|
223
|
+
# undef MSGPACK_PP_ITERATION_1
|
224
|
+
# endif
|
225
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 36 && MSGPACK_PP_ITERATION_FINISH_1 >= 36
|
226
|
+
# define MSGPACK_PP_ITERATION_1 36
|
227
|
+
# include MSGPACK_PP_FILENAME_1
|
228
|
+
# undef MSGPACK_PP_ITERATION_1
|
229
|
+
# endif
|
230
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 37 && MSGPACK_PP_ITERATION_FINISH_1 >= 37
|
231
|
+
# define MSGPACK_PP_ITERATION_1 37
|
232
|
+
# include MSGPACK_PP_FILENAME_1
|
233
|
+
# undef MSGPACK_PP_ITERATION_1
|
234
|
+
# endif
|
235
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 38 && MSGPACK_PP_ITERATION_FINISH_1 >= 38
|
236
|
+
# define MSGPACK_PP_ITERATION_1 38
|
237
|
+
# include MSGPACK_PP_FILENAME_1
|
238
|
+
# undef MSGPACK_PP_ITERATION_1
|
239
|
+
# endif
|
240
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 39 && MSGPACK_PP_ITERATION_FINISH_1 >= 39
|
241
|
+
# define MSGPACK_PP_ITERATION_1 39
|
242
|
+
# include MSGPACK_PP_FILENAME_1
|
243
|
+
# undef MSGPACK_PP_ITERATION_1
|
244
|
+
# endif
|
245
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 40 && MSGPACK_PP_ITERATION_FINISH_1 >= 40
|
246
|
+
# define MSGPACK_PP_ITERATION_1 40
|
247
|
+
# include MSGPACK_PP_FILENAME_1
|
248
|
+
# undef MSGPACK_PP_ITERATION_1
|
249
|
+
# endif
|
250
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 41 && MSGPACK_PP_ITERATION_FINISH_1 >= 41
|
251
|
+
# define MSGPACK_PP_ITERATION_1 41
|
252
|
+
# include MSGPACK_PP_FILENAME_1
|
253
|
+
# undef MSGPACK_PP_ITERATION_1
|
254
|
+
# endif
|
255
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 42 && MSGPACK_PP_ITERATION_FINISH_1 >= 42
|
256
|
+
# define MSGPACK_PP_ITERATION_1 42
|
257
|
+
# include MSGPACK_PP_FILENAME_1
|
258
|
+
# undef MSGPACK_PP_ITERATION_1
|
259
|
+
# endif
|
260
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 43 && MSGPACK_PP_ITERATION_FINISH_1 >= 43
|
261
|
+
# define MSGPACK_PP_ITERATION_1 43
|
262
|
+
# include MSGPACK_PP_FILENAME_1
|
263
|
+
# undef MSGPACK_PP_ITERATION_1
|
264
|
+
# endif
|
265
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 44 && MSGPACK_PP_ITERATION_FINISH_1 >= 44
|
266
|
+
# define MSGPACK_PP_ITERATION_1 44
|
267
|
+
# include MSGPACK_PP_FILENAME_1
|
268
|
+
# undef MSGPACK_PP_ITERATION_1
|
269
|
+
# endif
|
270
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 45 && MSGPACK_PP_ITERATION_FINISH_1 >= 45
|
271
|
+
# define MSGPACK_PP_ITERATION_1 45
|
272
|
+
# include MSGPACK_PP_FILENAME_1
|
273
|
+
# undef MSGPACK_PP_ITERATION_1
|
274
|
+
# endif
|
275
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 46 && MSGPACK_PP_ITERATION_FINISH_1 >= 46
|
276
|
+
# define MSGPACK_PP_ITERATION_1 46
|
277
|
+
# include MSGPACK_PP_FILENAME_1
|
278
|
+
# undef MSGPACK_PP_ITERATION_1
|
279
|
+
# endif
|
280
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 47 && MSGPACK_PP_ITERATION_FINISH_1 >= 47
|
281
|
+
# define MSGPACK_PP_ITERATION_1 47
|
282
|
+
# include MSGPACK_PP_FILENAME_1
|
283
|
+
# undef MSGPACK_PP_ITERATION_1
|
284
|
+
# endif
|
285
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 48 && MSGPACK_PP_ITERATION_FINISH_1 >= 48
|
286
|
+
# define MSGPACK_PP_ITERATION_1 48
|
287
|
+
# include MSGPACK_PP_FILENAME_1
|
288
|
+
# undef MSGPACK_PP_ITERATION_1
|
289
|
+
# endif
|
290
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 49 && MSGPACK_PP_ITERATION_FINISH_1 >= 49
|
291
|
+
# define MSGPACK_PP_ITERATION_1 49
|
292
|
+
# include MSGPACK_PP_FILENAME_1
|
293
|
+
# undef MSGPACK_PP_ITERATION_1
|
294
|
+
# endif
|
295
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 50 && MSGPACK_PP_ITERATION_FINISH_1 >= 50
|
296
|
+
# define MSGPACK_PP_ITERATION_1 50
|
297
|
+
# include MSGPACK_PP_FILENAME_1
|
298
|
+
# undef MSGPACK_PP_ITERATION_1
|
299
|
+
# endif
|
300
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 51 && MSGPACK_PP_ITERATION_FINISH_1 >= 51
|
301
|
+
# define MSGPACK_PP_ITERATION_1 51
|
302
|
+
# include MSGPACK_PP_FILENAME_1
|
303
|
+
# undef MSGPACK_PP_ITERATION_1
|
304
|
+
# endif
|
305
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 52 && MSGPACK_PP_ITERATION_FINISH_1 >= 52
|
306
|
+
# define MSGPACK_PP_ITERATION_1 52
|
307
|
+
# include MSGPACK_PP_FILENAME_1
|
308
|
+
# undef MSGPACK_PP_ITERATION_1
|
309
|
+
# endif
|
310
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 53 && MSGPACK_PP_ITERATION_FINISH_1 >= 53
|
311
|
+
# define MSGPACK_PP_ITERATION_1 53
|
312
|
+
# include MSGPACK_PP_FILENAME_1
|
313
|
+
# undef MSGPACK_PP_ITERATION_1
|
314
|
+
# endif
|
315
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 54 && MSGPACK_PP_ITERATION_FINISH_1 >= 54
|
316
|
+
# define MSGPACK_PP_ITERATION_1 54
|
317
|
+
# include MSGPACK_PP_FILENAME_1
|
318
|
+
# undef MSGPACK_PP_ITERATION_1
|
319
|
+
# endif
|
320
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 55 && MSGPACK_PP_ITERATION_FINISH_1 >= 55
|
321
|
+
# define MSGPACK_PP_ITERATION_1 55
|
322
|
+
# include MSGPACK_PP_FILENAME_1
|
323
|
+
# undef MSGPACK_PP_ITERATION_1
|
324
|
+
# endif
|
325
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 56 && MSGPACK_PP_ITERATION_FINISH_1 >= 56
|
326
|
+
# define MSGPACK_PP_ITERATION_1 56
|
327
|
+
# include MSGPACK_PP_FILENAME_1
|
328
|
+
# undef MSGPACK_PP_ITERATION_1
|
329
|
+
# endif
|
330
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 57 && MSGPACK_PP_ITERATION_FINISH_1 >= 57
|
331
|
+
# define MSGPACK_PP_ITERATION_1 57
|
332
|
+
# include MSGPACK_PP_FILENAME_1
|
333
|
+
# undef MSGPACK_PP_ITERATION_1
|
334
|
+
# endif
|
335
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 58 && MSGPACK_PP_ITERATION_FINISH_1 >= 58
|
336
|
+
# define MSGPACK_PP_ITERATION_1 58
|
337
|
+
# include MSGPACK_PP_FILENAME_1
|
338
|
+
# undef MSGPACK_PP_ITERATION_1
|
339
|
+
# endif
|
340
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 59 && MSGPACK_PP_ITERATION_FINISH_1 >= 59
|
341
|
+
# define MSGPACK_PP_ITERATION_1 59
|
342
|
+
# include MSGPACK_PP_FILENAME_1
|
343
|
+
# undef MSGPACK_PP_ITERATION_1
|
344
|
+
# endif
|
345
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 60 && MSGPACK_PP_ITERATION_FINISH_1 >= 60
|
346
|
+
# define MSGPACK_PP_ITERATION_1 60
|
347
|
+
# include MSGPACK_PP_FILENAME_1
|
348
|
+
# undef MSGPACK_PP_ITERATION_1
|
349
|
+
# endif
|
350
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 61 && MSGPACK_PP_ITERATION_FINISH_1 >= 61
|
351
|
+
# define MSGPACK_PP_ITERATION_1 61
|
352
|
+
# include MSGPACK_PP_FILENAME_1
|
353
|
+
# undef MSGPACK_PP_ITERATION_1
|
354
|
+
# endif
|
355
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 62 && MSGPACK_PP_ITERATION_FINISH_1 >= 62
|
356
|
+
# define MSGPACK_PP_ITERATION_1 62
|
357
|
+
# include MSGPACK_PP_FILENAME_1
|
358
|
+
# undef MSGPACK_PP_ITERATION_1
|
359
|
+
# endif
|
360
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 63 && MSGPACK_PP_ITERATION_FINISH_1 >= 63
|
361
|
+
# define MSGPACK_PP_ITERATION_1 63
|
362
|
+
# include MSGPACK_PP_FILENAME_1
|
363
|
+
# undef MSGPACK_PP_ITERATION_1
|
364
|
+
# endif
|
365
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 64 && MSGPACK_PP_ITERATION_FINISH_1 >= 64
|
366
|
+
# define MSGPACK_PP_ITERATION_1 64
|
367
|
+
# include MSGPACK_PP_FILENAME_1
|
368
|
+
# undef MSGPACK_PP_ITERATION_1
|
369
|
+
# endif
|
370
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 65 && MSGPACK_PP_ITERATION_FINISH_1 >= 65
|
371
|
+
# define MSGPACK_PP_ITERATION_1 65
|
372
|
+
# include MSGPACK_PP_FILENAME_1
|
373
|
+
# undef MSGPACK_PP_ITERATION_1
|
374
|
+
# endif
|
375
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 66 && MSGPACK_PP_ITERATION_FINISH_1 >= 66
|
376
|
+
# define MSGPACK_PP_ITERATION_1 66
|
377
|
+
# include MSGPACK_PP_FILENAME_1
|
378
|
+
# undef MSGPACK_PP_ITERATION_1
|
379
|
+
# endif
|
380
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 67 && MSGPACK_PP_ITERATION_FINISH_1 >= 67
|
381
|
+
# define MSGPACK_PP_ITERATION_1 67
|
382
|
+
# include MSGPACK_PP_FILENAME_1
|
383
|
+
# undef MSGPACK_PP_ITERATION_1
|
384
|
+
# endif
|
385
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 68 && MSGPACK_PP_ITERATION_FINISH_1 >= 68
|
386
|
+
# define MSGPACK_PP_ITERATION_1 68
|
387
|
+
# include MSGPACK_PP_FILENAME_1
|
388
|
+
# undef MSGPACK_PP_ITERATION_1
|
389
|
+
# endif
|
390
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 69 && MSGPACK_PP_ITERATION_FINISH_1 >= 69
|
391
|
+
# define MSGPACK_PP_ITERATION_1 69
|
392
|
+
# include MSGPACK_PP_FILENAME_1
|
393
|
+
# undef MSGPACK_PP_ITERATION_1
|
394
|
+
# endif
|
395
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 70 && MSGPACK_PP_ITERATION_FINISH_1 >= 70
|
396
|
+
# define MSGPACK_PP_ITERATION_1 70
|
397
|
+
# include MSGPACK_PP_FILENAME_1
|
398
|
+
# undef MSGPACK_PP_ITERATION_1
|
399
|
+
# endif
|
400
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 71 && MSGPACK_PP_ITERATION_FINISH_1 >= 71
|
401
|
+
# define MSGPACK_PP_ITERATION_1 71
|
402
|
+
# include MSGPACK_PP_FILENAME_1
|
403
|
+
# undef MSGPACK_PP_ITERATION_1
|
404
|
+
# endif
|
405
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 72 && MSGPACK_PP_ITERATION_FINISH_1 >= 72
|
406
|
+
# define MSGPACK_PP_ITERATION_1 72
|
407
|
+
# include MSGPACK_PP_FILENAME_1
|
408
|
+
# undef MSGPACK_PP_ITERATION_1
|
409
|
+
# endif
|
410
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 73 && MSGPACK_PP_ITERATION_FINISH_1 >= 73
|
411
|
+
# define MSGPACK_PP_ITERATION_1 73
|
412
|
+
# include MSGPACK_PP_FILENAME_1
|
413
|
+
# undef MSGPACK_PP_ITERATION_1
|
414
|
+
# endif
|
415
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 74 && MSGPACK_PP_ITERATION_FINISH_1 >= 74
|
416
|
+
# define MSGPACK_PP_ITERATION_1 74
|
417
|
+
# include MSGPACK_PP_FILENAME_1
|
418
|
+
# undef MSGPACK_PP_ITERATION_1
|
419
|
+
# endif
|
420
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 75 && MSGPACK_PP_ITERATION_FINISH_1 >= 75
|
421
|
+
# define MSGPACK_PP_ITERATION_1 75
|
422
|
+
# include MSGPACK_PP_FILENAME_1
|
423
|
+
# undef MSGPACK_PP_ITERATION_1
|
424
|
+
# endif
|
425
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 76 && MSGPACK_PP_ITERATION_FINISH_1 >= 76
|
426
|
+
# define MSGPACK_PP_ITERATION_1 76
|
427
|
+
# include MSGPACK_PP_FILENAME_1
|
428
|
+
# undef MSGPACK_PP_ITERATION_1
|
429
|
+
# endif
|
430
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 77 && MSGPACK_PP_ITERATION_FINISH_1 >= 77
|
431
|
+
# define MSGPACK_PP_ITERATION_1 77
|
432
|
+
# include MSGPACK_PP_FILENAME_1
|
433
|
+
# undef MSGPACK_PP_ITERATION_1
|
434
|
+
# endif
|
435
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 78 && MSGPACK_PP_ITERATION_FINISH_1 >= 78
|
436
|
+
# define MSGPACK_PP_ITERATION_1 78
|
437
|
+
# include MSGPACK_PP_FILENAME_1
|
438
|
+
# undef MSGPACK_PP_ITERATION_1
|
439
|
+
# endif
|
440
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 79 && MSGPACK_PP_ITERATION_FINISH_1 >= 79
|
441
|
+
# define MSGPACK_PP_ITERATION_1 79
|
442
|
+
# include MSGPACK_PP_FILENAME_1
|
443
|
+
# undef MSGPACK_PP_ITERATION_1
|
444
|
+
# endif
|
445
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 80 && MSGPACK_PP_ITERATION_FINISH_1 >= 80
|
446
|
+
# define MSGPACK_PP_ITERATION_1 80
|
447
|
+
# include MSGPACK_PP_FILENAME_1
|
448
|
+
# undef MSGPACK_PP_ITERATION_1
|
449
|
+
# endif
|
450
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 81 && MSGPACK_PP_ITERATION_FINISH_1 >= 81
|
451
|
+
# define MSGPACK_PP_ITERATION_1 81
|
452
|
+
# include MSGPACK_PP_FILENAME_1
|
453
|
+
# undef MSGPACK_PP_ITERATION_1
|
454
|
+
# endif
|
455
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 82 && MSGPACK_PP_ITERATION_FINISH_1 >= 82
|
456
|
+
# define MSGPACK_PP_ITERATION_1 82
|
457
|
+
# include MSGPACK_PP_FILENAME_1
|
458
|
+
# undef MSGPACK_PP_ITERATION_1
|
459
|
+
# endif
|
460
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 83 && MSGPACK_PP_ITERATION_FINISH_1 >= 83
|
461
|
+
# define MSGPACK_PP_ITERATION_1 83
|
462
|
+
# include MSGPACK_PP_FILENAME_1
|
463
|
+
# undef MSGPACK_PP_ITERATION_1
|
464
|
+
# endif
|
465
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 84 && MSGPACK_PP_ITERATION_FINISH_1 >= 84
|
466
|
+
# define MSGPACK_PP_ITERATION_1 84
|
467
|
+
# include MSGPACK_PP_FILENAME_1
|
468
|
+
# undef MSGPACK_PP_ITERATION_1
|
469
|
+
# endif
|
470
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 85 && MSGPACK_PP_ITERATION_FINISH_1 >= 85
|
471
|
+
# define MSGPACK_PP_ITERATION_1 85
|
472
|
+
# include MSGPACK_PP_FILENAME_1
|
473
|
+
# undef MSGPACK_PP_ITERATION_1
|
474
|
+
# endif
|
475
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 86 && MSGPACK_PP_ITERATION_FINISH_1 >= 86
|
476
|
+
# define MSGPACK_PP_ITERATION_1 86
|
477
|
+
# include MSGPACK_PP_FILENAME_1
|
478
|
+
# undef MSGPACK_PP_ITERATION_1
|
479
|
+
# endif
|
480
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 87 && MSGPACK_PP_ITERATION_FINISH_1 >= 87
|
481
|
+
# define MSGPACK_PP_ITERATION_1 87
|
482
|
+
# include MSGPACK_PP_FILENAME_1
|
483
|
+
# undef MSGPACK_PP_ITERATION_1
|
484
|
+
# endif
|
485
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 88 && MSGPACK_PP_ITERATION_FINISH_1 >= 88
|
486
|
+
# define MSGPACK_PP_ITERATION_1 88
|
487
|
+
# include MSGPACK_PP_FILENAME_1
|
488
|
+
# undef MSGPACK_PP_ITERATION_1
|
489
|
+
# endif
|
490
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 89 && MSGPACK_PP_ITERATION_FINISH_1 >= 89
|
491
|
+
# define MSGPACK_PP_ITERATION_1 89
|
492
|
+
# include MSGPACK_PP_FILENAME_1
|
493
|
+
# undef MSGPACK_PP_ITERATION_1
|
494
|
+
# endif
|
495
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 90 && MSGPACK_PP_ITERATION_FINISH_1 >= 90
|
496
|
+
# define MSGPACK_PP_ITERATION_1 90
|
497
|
+
# include MSGPACK_PP_FILENAME_1
|
498
|
+
# undef MSGPACK_PP_ITERATION_1
|
499
|
+
# endif
|
500
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 91 && MSGPACK_PP_ITERATION_FINISH_1 >= 91
|
501
|
+
# define MSGPACK_PP_ITERATION_1 91
|
502
|
+
# include MSGPACK_PP_FILENAME_1
|
503
|
+
# undef MSGPACK_PP_ITERATION_1
|
504
|
+
# endif
|
505
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 92 && MSGPACK_PP_ITERATION_FINISH_1 >= 92
|
506
|
+
# define MSGPACK_PP_ITERATION_1 92
|
507
|
+
# include MSGPACK_PP_FILENAME_1
|
508
|
+
# undef MSGPACK_PP_ITERATION_1
|
509
|
+
# endif
|
510
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 93 && MSGPACK_PP_ITERATION_FINISH_1 >= 93
|
511
|
+
# define MSGPACK_PP_ITERATION_1 93
|
512
|
+
# include MSGPACK_PP_FILENAME_1
|
513
|
+
# undef MSGPACK_PP_ITERATION_1
|
514
|
+
# endif
|
515
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 94 && MSGPACK_PP_ITERATION_FINISH_1 >= 94
|
516
|
+
# define MSGPACK_PP_ITERATION_1 94
|
517
|
+
# include MSGPACK_PP_FILENAME_1
|
518
|
+
# undef MSGPACK_PP_ITERATION_1
|
519
|
+
# endif
|
520
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 95 && MSGPACK_PP_ITERATION_FINISH_1 >= 95
|
521
|
+
# define MSGPACK_PP_ITERATION_1 95
|
522
|
+
# include MSGPACK_PP_FILENAME_1
|
523
|
+
# undef MSGPACK_PP_ITERATION_1
|
524
|
+
# endif
|
525
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 96 && MSGPACK_PP_ITERATION_FINISH_1 >= 96
|
526
|
+
# define MSGPACK_PP_ITERATION_1 96
|
527
|
+
# include MSGPACK_PP_FILENAME_1
|
528
|
+
# undef MSGPACK_PP_ITERATION_1
|
529
|
+
# endif
|
530
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 97 && MSGPACK_PP_ITERATION_FINISH_1 >= 97
|
531
|
+
# define MSGPACK_PP_ITERATION_1 97
|
532
|
+
# include MSGPACK_PP_FILENAME_1
|
533
|
+
# undef MSGPACK_PP_ITERATION_1
|
534
|
+
# endif
|
535
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 98 && MSGPACK_PP_ITERATION_FINISH_1 >= 98
|
536
|
+
# define MSGPACK_PP_ITERATION_1 98
|
537
|
+
# include MSGPACK_PP_FILENAME_1
|
538
|
+
# undef MSGPACK_PP_ITERATION_1
|
539
|
+
# endif
|
540
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 99 && MSGPACK_PP_ITERATION_FINISH_1 >= 99
|
541
|
+
# define MSGPACK_PP_ITERATION_1 99
|
542
|
+
# include MSGPACK_PP_FILENAME_1
|
543
|
+
# undef MSGPACK_PP_ITERATION_1
|
544
|
+
# endif
|
545
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 100 && MSGPACK_PP_ITERATION_FINISH_1 >= 100
|
546
|
+
# define MSGPACK_PP_ITERATION_1 100
|
547
|
+
# include MSGPACK_PP_FILENAME_1
|
548
|
+
# undef MSGPACK_PP_ITERATION_1
|
549
|
+
# endif
|
550
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 101 && MSGPACK_PP_ITERATION_FINISH_1 >= 101
|
551
|
+
# define MSGPACK_PP_ITERATION_1 101
|
552
|
+
# include MSGPACK_PP_FILENAME_1
|
553
|
+
# undef MSGPACK_PP_ITERATION_1
|
554
|
+
# endif
|
555
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 102 && MSGPACK_PP_ITERATION_FINISH_1 >= 102
|
556
|
+
# define MSGPACK_PP_ITERATION_1 102
|
557
|
+
# include MSGPACK_PP_FILENAME_1
|
558
|
+
# undef MSGPACK_PP_ITERATION_1
|
559
|
+
# endif
|
560
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 103 && MSGPACK_PP_ITERATION_FINISH_1 >= 103
|
561
|
+
# define MSGPACK_PP_ITERATION_1 103
|
562
|
+
# include MSGPACK_PP_FILENAME_1
|
563
|
+
# undef MSGPACK_PP_ITERATION_1
|
564
|
+
# endif
|
565
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 104 && MSGPACK_PP_ITERATION_FINISH_1 >= 104
|
566
|
+
# define MSGPACK_PP_ITERATION_1 104
|
567
|
+
# include MSGPACK_PP_FILENAME_1
|
568
|
+
# undef MSGPACK_PP_ITERATION_1
|
569
|
+
# endif
|
570
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 105 && MSGPACK_PP_ITERATION_FINISH_1 >= 105
|
571
|
+
# define MSGPACK_PP_ITERATION_1 105
|
572
|
+
# include MSGPACK_PP_FILENAME_1
|
573
|
+
# undef MSGPACK_PP_ITERATION_1
|
574
|
+
# endif
|
575
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 106 && MSGPACK_PP_ITERATION_FINISH_1 >= 106
|
576
|
+
# define MSGPACK_PP_ITERATION_1 106
|
577
|
+
# include MSGPACK_PP_FILENAME_1
|
578
|
+
# undef MSGPACK_PP_ITERATION_1
|
579
|
+
# endif
|
580
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 107 && MSGPACK_PP_ITERATION_FINISH_1 >= 107
|
581
|
+
# define MSGPACK_PP_ITERATION_1 107
|
582
|
+
# include MSGPACK_PP_FILENAME_1
|
583
|
+
# undef MSGPACK_PP_ITERATION_1
|
584
|
+
# endif
|
585
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 108 && MSGPACK_PP_ITERATION_FINISH_1 >= 108
|
586
|
+
# define MSGPACK_PP_ITERATION_1 108
|
587
|
+
# include MSGPACK_PP_FILENAME_1
|
588
|
+
# undef MSGPACK_PP_ITERATION_1
|
589
|
+
# endif
|
590
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 109 && MSGPACK_PP_ITERATION_FINISH_1 >= 109
|
591
|
+
# define MSGPACK_PP_ITERATION_1 109
|
592
|
+
# include MSGPACK_PP_FILENAME_1
|
593
|
+
# undef MSGPACK_PP_ITERATION_1
|
594
|
+
# endif
|
595
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 110 && MSGPACK_PP_ITERATION_FINISH_1 >= 110
|
596
|
+
# define MSGPACK_PP_ITERATION_1 110
|
597
|
+
# include MSGPACK_PP_FILENAME_1
|
598
|
+
# undef MSGPACK_PP_ITERATION_1
|
599
|
+
# endif
|
600
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 111 && MSGPACK_PP_ITERATION_FINISH_1 >= 111
|
601
|
+
# define MSGPACK_PP_ITERATION_1 111
|
602
|
+
# include MSGPACK_PP_FILENAME_1
|
603
|
+
# undef MSGPACK_PP_ITERATION_1
|
604
|
+
# endif
|
605
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 112 && MSGPACK_PP_ITERATION_FINISH_1 >= 112
|
606
|
+
# define MSGPACK_PP_ITERATION_1 112
|
607
|
+
# include MSGPACK_PP_FILENAME_1
|
608
|
+
# undef MSGPACK_PP_ITERATION_1
|
609
|
+
# endif
|
610
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 113 && MSGPACK_PP_ITERATION_FINISH_1 >= 113
|
611
|
+
# define MSGPACK_PP_ITERATION_1 113
|
612
|
+
# include MSGPACK_PP_FILENAME_1
|
613
|
+
# undef MSGPACK_PP_ITERATION_1
|
614
|
+
# endif
|
615
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 114 && MSGPACK_PP_ITERATION_FINISH_1 >= 114
|
616
|
+
# define MSGPACK_PP_ITERATION_1 114
|
617
|
+
# include MSGPACK_PP_FILENAME_1
|
618
|
+
# undef MSGPACK_PP_ITERATION_1
|
619
|
+
# endif
|
620
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 115 && MSGPACK_PP_ITERATION_FINISH_1 >= 115
|
621
|
+
# define MSGPACK_PP_ITERATION_1 115
|
622
|
+
# include MSGPACK_PP_FILENAME_1
|
623
|
+
# undef MSGPACK_PP_ITERATION_1
|
624
|
+
# endif
|
625
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 116 && MSGPACK_PP_ITERATION_FINISH_1 >= 116
|
626
|
+
# define MSGPACK_PP_ITERATION_1 116
|
627
|
+
# include MSGPACK_PP_FILENAME_1
|
628
|
+
# undef MSGPACK_PP_ITERATION_1
|
629
|
+
# endif
|
630
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 117 && MSGPACK_PP_ITERATION_FINISH_1 >= 117
|
631
|
+
# define MSGPACK_PP_ITERATION_1 117
|
632
|
+
# include MSGPACK_PP_FILENAME_1
|
633
|
+
# undef MSGPACK_PP_ITERATION_1
|
634
|
+
# endif
|
635
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 118 && MSGPACK_PP_ITERATION_FINISH_1 >= 118
|
636
|
+
# define MSGPACK_PP_ITERATION_1 118
|
637
|
+
# include MSGPACK_PP_FILENAME_1
|
638
|
+
# undef MSGPACK_PP_ITERATION_1
|
639
|
+
# endif
|
640
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 119 && MSGPACK_PP_ITERATION_FINISH_1 >= 119
|
641
|
+
# define MSGPACK_PP_ITERATION_1 119
|
642
|
+
# include MSGPACK_PP_FILENAME_1
|
643
|
+
# undef MSGPACK_PP_ITERATION_1
|
644
|
+
# endif
|
645
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 120 && MSGPACK_PP_ITERATION_FINISH_1 >= 120
|
646
|
+
# define MSGPACK_PP_ITERATION_1 120
|
647
|
+
# include MSGPACK_PP_FILENAME_1
|
648
|
+
# undef MSGPACK_PP_ITERATION_1
|
649
|
+
# endif
|
650
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 121 && MSGPACK_PP_ITERATION_FINISH_1 >= 121
|
651
|
+
# define MSGPACK_PP_ITERATION_1 121
|
652
|
+
# include MSGPACK_PP_FILENAME_1
|
653
|
+
# undef MSGPACK_PP_ITERATION_1
|
654
|
+
# endif
|
655
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 122 && MSGPACK_PP_ITERATION_FINISH_1 >= 122
|
656
|
+
# define MSGPACK_PP_ITERATION_1 122
|
657
|
+
# include MSGPACK_PP_FILENAME_1
|
658
|
+
# undef MSGPACK_PP_ITERATION_1
|
659
|
+
# endif
|
660
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 123 && MSGPACK_PP_ITERATION_FINISH_1 >= 123
|
661
|
+
# define MSGPACK_PP_ITERATION_1 123
|
662
|
+
# include MSGPACK_PP_FILENAME_1
|
663
|
+
# undef MSGPACK_PP_ITERATION_1
|
664
|
+
# endif
|
665
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 124 && MSGPACK_PP_ITERATION_FINISH_1 >= 124
|
666
|
+
# define MSGPACK_PP_ITERATION_1 124
|
667
|
+
# include MSGPACK_PP_FILENAME_1
|
668
|
+
# undef MSGPACK_PP_ITERATION_1
|
669
|
+
# endif
|
670
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 125 && MSGPACK_PP_ITERATION_FINISH_1 >= 125
|
671
|
+
# define MSGPACK_PP_ITERATION_1 125
|
672
|
+
# include MSGPACK_PP_FILENAME_1
|
673
|
+
# undef MSGPACK_PP_ITERATION_1
|
674
|
+
# endif
|
675
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 126 && MSGPACK_PP_ITERATION_FINISH_1 >= 126
|
676
|
+
# define MSGPACK_PP_ITERATION_1 126
|
677
|
+
# include MSGPACK_PP_FILENAME_1
|
678
|
+
# undef MSGPACK_PP_ITERATION_1
|
679
|
+
# endif
|
680
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 127 && MSGPACK_PP_ITERATION_FINISH_1 >= 127
|
681
|
+
# define MSGPACK_PP_ITERATION_1 127
|
682
|
+
# include MSGPACK_PP_FILENAME_1
|
683
|
+
# undef MSGPACK_PP_ITERATION_1
|
684
|
+
# endif
|
685
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 128 && MSGPACK_PP_ITERATION_FINISH_1 >= 128
|
686
|
+
# define MSGPACK_PP_ITERATION_1 128
|
687
|
+
# include MSGPACK_PP_FILENAME_1
|
688
|
+
# undef MSGPACK_PP_ITERATION_1
|
689
|
+
# endif
|
690
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 129 && MSGPACK_PP_ITERATION_FINISH_1 >= 129
|
691
|
+
# define MSGPACK_PP_ITERATION_1 129
|
692
|
+
# include MSGPACK_PP_FILENAME_1
|
693
|
+
# undef MSGPACK_PP_ITERATION_1
|
694
|
+
# endif
|
695
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 130 && MSGPACK_PP_ITERATION_FINISH_1 >= 130
|
696
|
+
# define MSGPACK_PP_ITERATION_1 130
|
697
|
+
# include MSGPACK_PP_FILENAME_1
|
698
|
+
# undef MSGPACK_PP_ITERATION_1
|
699
|
+
# endif
|
700
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 131 && MSGPACK_PP_ITERATION_FINISH_1 >= 131
|
701
|
+
# define MSGPACK_PP_ITERATION_1 131
|
702
|
+
# include MSGPACK_PP_FILENAME_1
|
703
|
+
# undef MSGPACK_PP_ITERATION_1
|
704
|
+
# endif
|
705
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 132 && MSGPACK_PP_ITERATION_FINISH_1 >= 132
|
706
|
+
# define MSGPACK_PP_ITERATION_1 132
|
707
|
+
# include MSGPACK_PP_FILENAME_1
|
708
|
+
# undef MSGPACK_PP_ITERATION_1
|
709
|
+
# endif
|
710
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 133 && MSGPACK_PP_ITERATION_FINISH_1 >= 133
|
711
|
+
# define MSGPACK_PP_ITERATION_1 133
|
712
|
+
# include MSGPACK_PP_FILENAME_1
|
713
|
+
# undef MSGPACK_PP_ITERATION_1
|
714
|
+
# endif
|
715
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 134 && MSGPACK_PP_ITERATION_FINISH_1 >= 134
|
716
|
+
# define MSGPACK_PP_ITERATION_1 134
|
717
|
+
# include MSGPACK_PP_FILENAME_1
|
718
|
+
# undef MSGPACK_PP_ITERATION_1
|
719
|
+
# endif
|
720
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 135 && MSGPACK_PP_ITERATION_FINISH_1 >= 135
|
721
|
+
# define MSGPACK_PP_ITERATION_1 135
|
722
|
+
# include MSGPACK_PP_FILENAME_1
|
723
|
+
# undef MSGPACK_PP_ITERATION_1
|
724
|
+
# endif
|
725
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 136 && MSGPACK_PP_ITERATION_FINISH_1 >= 136
|
726
|
+
# define MSGPACK_PP_ITERATION_1 136
|
727
|
+
# include MSGPACK_PP_FILENAME_1
|
728
|
+
# undef MSGPACK_PP_ITERATION_1
|
729
|
+
# endif
|
730
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 137 && MSGPACK_PP_ITERATION_FINISH_1 >= 137
|
731
|
+
# define MSGPACK_PP_ITERATION_1 137
|
732
|
+
# include MSGPACK_PP_FILENAME_1
|
733
|
+
# undef MSGPACK_PP_ITERATION_1
|
734
|
+
# endif
|
735
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 138 && MSGPACK_PP_ITERATION_FINISH_1 >= 138
|
736
|
+
# define MSGPACK_PP_ITERATION_1 138
|
737
|
+
# include MSGPACK_PP_FILENAME_1
|
738
|
+
# undef MSGPACK_PP_ITERATION_1
|
739
|
+
# endif
|
740
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 139 && MSGPACK_PP_ITERATION_FINISH_1 >= 139
|
741
|
+
# define MSGPACK_PP_ITERATION_1 139
|
742
|
+
# include MSGPACK_PP_FILENAME_1
|
743
|
+
# undef MSGPACK_PP_ITERATION_1
|
744
|
+
# endif
|
745
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 140 && MSGPACK_PP_ITERATION_FINISH_1 >= 140
|
746
|
+
# define MSGPACK_PP_ITERATION_1 140
|
747
|
+
# include MSGPACK_PP_FILENAME_1
|
748
|
+
# undef MSGPACK_PP_ITERATION_1
|
749
|
+
# endif
|
750
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 141 && MSGPACK_PP_ITERATION_FINISH_1 >= 141
|
751
|
+
# define MSGPACK_PP_ITERATION_1 141
|
752
|
+
# include MSGPACK_PP_FILENAME_1
|
753
|
+
# undef MSGPACK_PP_ITERATION_1
|
754
|
+
# endif
|
755
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 142 && MSGPACK_PP_ITERATION_FINISH_1 >= 142
|
756
|
+
# define MSGPACK_PP_ITERATION_1 142
|
757
|
+
# include MSGPACK_PP_FILENAME_1
|
758
|
+
# undef MSGPACK_PP_ITERATION_1
|
759
|
+
# endif
|
760
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 143 && MSGPACK_PP_ITERATION_FINISH_1 >= 143
|
761
|
+
# define MSGPACK_PP_ITERATION_1 143
|
762
|
+
# include MSGPACK_PP_FILENAME_1
|
763
|
+
# undef MSGPACK_PP_ITERATION_1
|
764
|
+
# endif
|
765
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 144 && MSGPACK_PP_ITERATION_FINISH_1 >= 144
|
766
|
+
# define MSGPACK_PP_ITERATION_1 144
|
767
|
+
# include MSGPACK_PP_FILENAME_1
|
768
|
+
# undef MSGPACK_PP_ITERATION_1
|
769
|
+
# endif
|
770
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 145 && MSGPACK_PP_ITERATION_FINISH_1 >= 145
|
771
|
+
# define MSGPACK_PP_ITERATION_1 145
|
772
|
+
# include MSGPACK_PP_FILENAME_1
|
773
|
+
# undef MSGPACK_PP_ITERATION_1
|
774
|
+
# endif
|
775
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 146 && MSGPACK_PP_ITERATION_FINISH_1 >= 146
|
776
|
+
# define MSGPACK_PP_ITERATION_1 146
|
777
|
+
# include MSGPACK_PP_FILENAME_1
|
778
|
+
# undef MSGPACK_PP_ITERATION_1
|
779
|
+
# endif
|
780
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 147 && MSGPACK_PP_ITERATION_FINISH_1 >= 147
|
781
|
+
# define MSGPACK_PP_ITERATION_1 147
|
782
|
+
# include MSGPACK_PP_FILENAME_1
|
783
|
+
# undef MSGPACK_PP_ITERATION_1
|
784
|
+
# endif
|
785
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 148 && MSGPACK_PP_ITERATION_FINISH_1 >= 148
|
786
|
+
# define MSGPACK_PP_ITERATION_1 148
|
787
|
+
# include MSGPACK_PP_FILENAME_1
|
788
|
+
# undef MSGPACK_PP_ITERATION_1
|
789
|
+
# endif
|
790
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 149 && MSGPACK_PP_ITERATION_FINISH_1 >= 149
|
791
|
+
# define MSGPACK_PP_ITERATION_1 149
|
792
|
+
# include MSGPACK_PP_FILENAME_1
|
793
|
+
# undef MSGPACK_PP_ITERATION_1
|
794
|
+
# endif
|
795
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 150 && MSGPACK_PP_ITERATION_FINISH_1 >= 150
|
796
|
+
# define MSGPACK_PP_ITERATION_1 150
|
797
|
+
# include MSGPACK_PP_FILENAME_1
|
798
|
+
# undef MSGPACK_PP_ITERATION_1
|
799
|
+
# endif
|
800
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 151 && MSGPACK_PP_ITERATION_FINISH_1 >= 151
|
801
|
+
# define MSGPACK_PP_ITERATION_1 151
|
802
|
+
# include MSGPACK_PP_FILENAME_1
|
803
|
+
# undef MSGPACK_PP_ITERATION_1
|
804
|
+
# endif
|
805
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 152 && MSGPACK_PP_ITERATION_FINISH_1 >= 152
|
806
|
+
# define MSGPACK_PP_ITERATION_1 152
|
807
|
+
# include MSGPACK_PP_FILENAME_1
|
808
|
+
# undef MSGPACK_PP_ITERATION_1
|
809
|
+
# endif
|
810
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 153 && MSGPACK_PP_ITERATION_FINISH_1 >= 153
|
811
|
+
# define MSGPACK_PP_ITERATION_1 153
|
812
|
+
# include MSGPACK_PP_FILENAME_1
|
813
|
+
# undef MSGPACK_PP_ITERATION_1
|
814
|
+
# endif
|
815
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 154 && MSGPACK_PP_ITERATION_FINISH_1 >= 154
|
816
|
+
# define MSGPACK_PP_ITERATION_1 154
|
817
|
+
# include MSGPACK_PP_FILENAME_1
|
818
|
+
# undef MSGPACK_PP_ITERATION_1
|
819
|
+
# endif
|
820
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 155 && MSGPACK_PP_ITERATION_FINISH_1 >= 155
|
821
|
+
# define MSGPACK_PP_ITERATION_1 155
|
822
|
+
# include MSGPACK_PP_FILENAME_1
|
823
|
+
# undef MSGPACK_PP_ITERATION_1
|
824
|
+
# endif
|
825
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 156 && MSGPACK_PP_ITERATION_FINISH_1 >= 156
|
826
|
+
# define MSGPACK_PP_ITERATION_1 156
|
827
|
+
# include MSGPACK_PP_FILENAME_1
|
828
|
+
# undef MSGPACK_PP_ITERATION_1
|
829
|
+
# endif
|
830
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 157 && MSGPACK_PP_ITERATION_FINISH_1 >= 157
|
831
|
+
# define MSGPACK_PP_ITERATION_1 157
|
832
|
+
# include MSGPACK_PP_FILENAME_1
|
833
|
+
# undef MSGPACK_PP_ITERATION_1
|
834
|
+
# endif
|
835
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 158 && MSGPACK_PP_ITERATION_FINISH_1 >= 158
|
836
|
+
# define MSGPACK_PP_ITERATION_1 158
|
837
|
+
# include MSGPACK_PP_FILENAME_1
|
838
|
+
# undef MSGPACK_PP_ITERATION_1
|
839
|
+
# endif
|
840
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 159 && MSGPACK_PP_ITERATION_FINISH_1 >= 159
|
841
|
+
# define MSGPACK_PP_ITERATION_1 159
|
842
|
+
# include MSGPACK_PP_FILENAME_1
|
843
|
+
# undef MSGPACK_PP_ITERATION_1
|
844
|
+
# endif
|
845
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 160 && MSGPACK_PP_ITERATION_FINISH_1 >= 160
|
846
|
+
# define MSGPACK_PP_ITERATION_1 160
|
847
|
+
# include MSGPACK_PP_FILENAME_1
|
848
|
+
# undef MSGPACK_PP_ITERATION_1
|
849
|
+
# endif
|
850
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 161 && MSGPACK_PP_ITERATION_FINISH_1 >= 161
|
851
|
+
# define MSGPACK_PP_ITERATION_1 161
|
852
|
+
# include MSGPACK_PP_FILENAME_1
|
853
|
+
# undef MSGPACK_PP_ITERATION_1
|
854
|
+
# endif
|
855
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 162 && MSGPACK_PP_ITERATION_FINISH_1 >= 162
|
856
|
+
# define MSGPACK_PP_ITERATION_1 162
|
857
|
+
# include MSGPACK_PP_FILENAME_1
|
858
|
+
# undef MSGPACK_PP_ITERATION_1
|
859
|
+
# endif
|
860
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 163 && MSGPACK_PP_ITERATION_FINISH_1 >= 163
|
861
|
+
# define MSGPACK_PP_ITERATION_1 163
|
862
|
+
# include MSGPACK_PP_FILENAME_1
|
863
|
+
# undef MSGPACK_PP_ITERATION_1
|
864
|
+
# endif
|
865
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 164 && MSGPACK_PP_ITERATION_FINISH_1 >= 164
|
866
|
+
# define MSGPACK_PP_ITERATION_1 164
|
867
|
+
# include MSGPACK_PP_FILENAME_1
|
868
|
+
# undef MSGPACK_PP_ITERATION_1
|
869
|
+
# endif
|
870
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 165 && MSGPACK_PP_ITERATION_FINISH_1 >= 165
|
871
|
+
# define MSGPACK_PP_ITERATION_1 165
|
872
|
+
# include MSGPACK_PP_FILENAME_1
|
873
|
+
# undef MSGPACK_PP_ITERATION_1
|
874
|
+
# endif
|
875
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 166 && MSGPACK_PP_ITERATION_FINISH_1 >= 166
|
876
|
+
# define MSGPACK_PP_ITERATION_1 166
|
877
|
+
# include MSGPACK_PP_FILENAME_1
|
878
|
+
# undef MSGPACK_PP_ITERATION_1
|
879
|
+
# endif
|
880
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 167 && MSGPACK_PP_ITERATION_FINISH_1 >= 167
|
881
|
+
# define MSGPACK_PP_ITERATION_1 167
|
882
|
+
# include MSGPACK_PP_FILENAME_1
|
883
|
+
# undef MSGPACK_PP_ITERATION_1
|
884
|
+
# endif
|
885
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 168 && MSGPACK_PP_ITERATION_FINISH_1 >= 168
|
886
|
+
# define MSGPACK_PP_ITERATION_1 168
|
887
|
+
# include MSGPACK_PP_FILENAME_1
|
888
|
+
# undef MSGPACK_PP_ITERATION_1
|
889
|
+
# endif
|
890
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 169 && MSGPACK_PP_ITERATION_FINISH_1 >= 169
|
891
|
+
# define MSGPACK_PP_ITERATION_1 169
|
892
|
+
# include MSGPACK_PP_FILENAME_1
|
893
|
+
# undef MSGPACK_PP_ITERATION_1
|
894
|
+
# endif
|
895
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 170 && MSGPACK_PP_ITERATION_FINISH_1 >= 170
|
896
|
+
# define MSGPACK_PP_ITERATION_1 170
|
897
|
+
# include MSGPACK_PP_FILENAME_1
|
898
|
+
# undef MSGPACK_PP_ITERATION_1
|
899
|
+
# endif
|
900
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 171 && MSGPACK_PP_ITERATION_FINISH_1 >= 171
|
901
|
+
# define MSGPACK_PP_ITERATION_1 171
|
902
|
+
# include MSGPACK_PP_FILENAME_1
|
903
|
+
# undef MSGPACK_PP_ITERATION_1
|
904
|
+
# endif
|
905
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 172 && MSGPACK_PP_ITERATION_FINISH_1 >= 172
|
906
|
+
# define MSGPACK_PP_ITERATION_1 172
|
907
|
+
# include MSGPACK_PP_FILENAME_1
|
908
|
+
# undef MSGPACK_PP_ITERATION_1
|
909
|
+
# endif
|
910
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 173 && MSGPACK_PP_ITERATION_FINISH_1 >= 173
|
911
|
+
# define MSGPACK_PP_ITERATION_1 173
|
912
|
+
# include MSGPACK_PP_FILENAME_1
|
913
|
+
# undef MSGPACK_PP_ITERATION_1
|
914
|
+
# endif
|
915
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 174 && MSGPACK_PP_ITERATION_FINISH_1 >= 174
|
916
|
+
# define MSGPACK_PP_ITERATION_1 174
|
917
|
+
# include MSGPACK_PP_FILENAME_1
|
918
|
+
# undef MSGPACK_PP_ITERATION_1
|
919
|
+
# endif
|
920
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 175 && MSGPACK_PP_ITERATION_FINISH_1 >= 175
|
921
|
+
# define MSGPACK_PP_ITERATION_1 175
|
922
|
+
# include MSGPACK_PP_FILENAME_1
|
923
|
+
# undef MSGPACK_PP_ITERATION_1
|
924
|
+
# endif
|
925
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 176 && MSGPACK_PP_ITERATION_FINISH_1 >= 176
|
926
|
+
# define MSGPACK_PP_ITERATION_1 176
|
927
|
+
# include MSGPACK_PP_FILENAME_1
|
928
|
+
# undef MSGPACK_PP_ITERATION_1
|
929
|
+
# endif
|
930
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 177 && MSGPACK_PP_ITERATION_FINISH_1 >= 177
|
931
|
+
# define MSGPACK_PP_ITERATION_1 177
|
932
|
+
# include MSGPACK_PP_FILENAME_1
|
933
|
+
# undef MSGPACK_PP_ITERATION_1
|
934
|
+
# endif
|
935
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 178 && MSGPACK_PP_ITERATION_FINISH_1 >= 178
|
936
|
+
# define MSGPACK_PP_ITERATION_1 178
|
937
|
+
# include MSGPACK_PP_FILENAME_1
|
938
|
+
# undef MSGPACK_PP_ITERATION_1
|
939
|
+
# endif
|
940
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 179 && MSGPACK_PP_ITERATION_FINISH_1 >= 179
|
941
|
+
# define MSGPACK_PP_ITERATION_1 179
|
942
|
+
# include MSGPACK_PP_FILENAME_1
|
943
|
+
# undef MSGPACK_PP_ITERATION_1
|
944
|
+
# endif
|
945
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 180 && MSGPACK_PP_ITERATION_FINISH_1 >= 180
|
946
|
+
# define MSGPACK_PP_ITERATION_1 180
|
947
|
+
# include MSGPACK_PP_FILENAME_1
|
948
|
+
# undef MSGPACK_PP_ITERATION_1
|
949
|
+
# endif
|
950
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 181 && MSGPACK_PP_ITERATION_FINISH_1 >= 181
|
951
|
+
# define MSGPACK_PP_ITERATION_1 181
|
952
|
+
# include MSGPACK_PP_FILENAME_1
|
953
|
+
# undef MSGPACK_PP_ITERATION_1
|
954
|
+
# endif
|
955
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 182 && MSGPACK_PP_ITERATION_FINISH_1 >= 182
|
956
|
+
# define MSGPACK_PP_ITERATION_1 182
|
957
|
+
# include MSGPACK_PP_FILENAME_1
|
958
|
+
# undef MSGPACK_PP_ITERATION_1
|
959
|
+
# endif
|
960
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 183 && MSGPACK_PP_ITERATION_FINISH_1 >= 183
|
961
|
+
# define MSGPACK_PP_ITERATION_1 183
|
962
|
+
# include MSGPACK_PP_FILENAME_1
|
963
|
+
# undef MSGPACK_PP_ITERATION_1
|
964
|
+
# endif
|
965
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 184 && MSGPACK_PP_ITERATION_FINISH_1 >= 184
|
966
|
+
# define MSGPACK_PP_ITERATION_1 184
|
967
|
+
# include MSGPACK_PP_FILENAME_1
|
968
|
+
# undef MSGPACK_PP_ITERATION_1
|
969
|
+
# endif
|
970
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 185 && MSGPACK_PP_ITERATION_FINISH_1 >= 185
|
971
|
+
# define MSGPACK_PP_ITERATION_1 185
|
972
|
+
# include MSGPACK_PP_FILENAME_1
|
973
|
+
# undef MSGPACK_PP_ITERATION_1
|
974
|
+
# endif
|
975
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 186 && MSGPACK_PP_ITERATION_FINISH_1 >= 186
|
976
|
+
# define MSGPACK_PP_ITERATION_1 186
|
977
|
+
# include MSGPACK_PP_FILENAME_1
|
978
|
+
# undef MSGPACK_PP_ITERATION_1
|
979
|
+
# endif
|
980
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 187 && MSGPACK_PP_ITERATION_FINISH_1 >= 187
|
981
|
+
# define MSGPACK_PP_ITERATION_1 187
|
982
|
+
# include MSGPACK_PP_FILENAME_1
|
983
|
+
# undef MSGPACK_PP_ITERATION_1
|
984
|
+
# endif
|
985
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 188 && MSGPACK_PP_ITERATION_FINISH_1 >= 188
|
986
|
+
# define MSGPACK_PP_ITERATION_1 188
|
987
|
+
# include MSGPACK_PP_FILENAME_1
|
988
|
+
# undef MSGPACK_PP_ITERATION_1
|
989
|
+
# endif
|
990
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 189 && MSGPACK_PP_ITERATION_FINISH_1 >= 189
|
991
|
+
# define MSGPACK_PP_ITERATION_1 189
|
992
|
+
# include MSGPACK_PP_FILENAME_1
|
993
|
+
# undef MSGPACK_PP_ITERATION_1
|
994
|
+
# endif
|
995
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 190 && MSGPACK_PP_ITERATION_FINISH_1 >= 190
|
996
|
+
# define MSGPACK_PP_ITERATION_1 190
|
997
|
+
# include MSGPACK_PP_FILENAME_1
|
998
|
+
# undef MSGPACK_PP_ITERATION_1
|
999
|
+
# endif
|
1000
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 191 && MSGPACK_PP_ITERATION_FINISH_1 >= 191
|
1001
|
+
# define MSGPACK_PP_ITERATION_1 191
|
1002
|
+
# include MSGPACK_PP_FILENAME_1
|
1003
|
+
# undef MSGPACK_PP_ITERATION_1
|
1004
|
+
# endif
|
1005
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 192 && MSGPACK_PP_ITERATION_FINISH_1 >= 192
|
1006
|
+
# define MSGPACK_PP_ITERATION_1 192
|
1007
|
+
# include MSGPACK_PP_FILENAME_1
|
1008
|
+
# undef MSGPACK_PP_ITERATION_1
|
1009
|
+
# endif
|
1010
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 193 && MSGPACK_PP_ITERATION_FINISH_1 >= 193
|
1011
|
+
# define MSGPACK_PP_ITERATION_1 193
|
1012
|
+
# include MSGPACK_PP_FILENAME_1
|
1013
|
+
# undef MSGPACK_PP_ITERATION_1
|
1014
|
+
# endif
|
1015
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 194 && MSGPACK_PP_ITERATION_FINISH_1 >= 194
|
1016
|
+
# define MSGPACK_PP_ITERATION_1 194
|
1017
|
+
# include MSGPACK_PP_FILENAME_1
|
1018
|
+
# undef MSGPACK_PP_ITERATION_1
|
1019
|
+
# endif
|
1020
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 195 && MSGPACK_PP_ITERATION_FINISH_1 >= 195
|
1021
|
+
# define MSGPACK_PP_ITERATION_1 195
|
1022
|
+
# include MSGPACK_PP_FILENAME_1
|
1023
|
+
# undef MSGPACK_PP_ITERATION_1
|
1024
|
+
# endif
|
1025
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 196 && MSGPACK_PP_ITERATION_FINISH_1 >= 196
|
1026
|
+
# define MSGPACK_PP_ITERATION_1 196
|
1027
|
+
# include MSGPACK_PP_FILENAME_1
|
1028
|
+
# undef MSGPACK_PP_ITERATION_1
|
1029
|
+
# endif
|
1030
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 197 && MSGPACK_PP_ITERATION_FINISH_1 >= 197
|
1031
|
+
# define MSGPACK_PP_ITERATION_1 197
|
1032
|
+
# include MSGPACK_PP_FILENAME_1
|
1033
|
+
# undef MSGPACK_PP_ITERATION_1
|
1034
|
+
# endif
|
1035
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 198 && MSGPACK_PP_ITERATION_FINISH_1 >= 198
|
1036
|
+
# define MSGPACK_PP_ITERATION_1 198
|
1037
|
+
# include MSGPACK_PP_FILENAME_1
|
1038
|
+
# undef MSGPACK_PP_ITERATION_1
|
1039
|
+
# endif
|
1040
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 199 && MSGPACK_PP_ITERATION_FINISH_1 >= 199
|
1041
|
+
# define MSGPACK_PP_ITERATION_1 199
|
1042
|
+
# include MSGPACK_PP_FILENAME_1
|
1043
|
+
# undef MSGPACK_PP_ITERATION_1
|
1044
|
+
# endif
|
1045
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 200 && MSGPACK_PP_ITERATION_FINISH_1 >= 200
|
1046
|
+
# define MSGPACK_PP_ITERATION_1 200
|
1047
|
+
# include MSGPACK_PP_FILENAME_1
|
1048
|
+
# undef MSGPACK_PP_ITERATION_1
|
1049
|
+
# endif
|
1050
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 201 && MSGPACK_PP_ITERATION_FINISH_1 >= 201
|
1051
|
+
# define MSGPACK_PP_ITERATION_1 201
|
1052
|
+
# include MSGPACK_PP_FILENAME_1
|
1053
|
+
# undef MSGPACK_PP_ITERATION_1
|
1054
|
+
# endif
|
1055
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 202 && MSGPACK_PP_ITERATION_FINISH_1 >= 202
|
1056
|
+
# define MSGPACK_PP_ITERATION_1 202
|
1057
|
+
# include MSGPACK_PP_FILENAME_1
|
1058
|
+
# undef MSGPACK_PP_ITERATION_1
|
1059
|
+
# endif
|
1060
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 203 && MSGPACK_PP_ITERATION_FINISH_1 >= 203
|
1061
|
+
# define MSGPACK_PP_ITERATION_1 203
|
1062
|
+
# include MSGPACK_PP_FILENAME_1
|
1063
|
+
# undef MSGPACK_PP_ITERATION_1
|
1064
|
+
# endif
|
1065
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 204 && MSGPACK_PP_ITERATION_FINISH_1 >= 204
|
1066
|
+
# define MSGPACK_PP_ITERATION_1 204
|
1067
|
+
# include MSGPACK_PP_FILENAME_1
|
1068
|
+
# undef MSGPACK_PP_ITERATION_1
|
1069
|
+
# endif
|
1070
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 205 && MSGPACK_PP_ITERATION_FINISH_1 >= 205
|
1071
|
+
# define MSGPACK_PP_ITERATION_1 205
|
1072
|
+
# include MSGPACK_PP_FILENAME_1
|
1073
|
+
# undef MSGPACK_PP_ITERATION_1
|
1074
|
+
# endif
|
1075
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 206 && MSGPACK_PP_ITERATION_FINISH_1 >= 206
|
1076
|
+
# define MSGPACK_PP_ITERATION_1 206
|
1077
|
+
# include MSGPACK_PP_FILENAME_1
|
1078
|
+
# undef MSGPACK_PP_ITERATION_1
|
1079
|
+
# endif
|
1080
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 207 && MSGPACK_PP_ITERATION_FINISH_1 >= 207
|
1081
|
+
# define MSGPACK_PP_ITERATION_1 207
|
1082
|
+
# include MSGPACK_PP_FILENAME_1
|
1083
|
+
# undef MSGPACK_PP_ITERATION_1
|
1084
|
+
# endif
|
1085
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 208 && MSGPACK_PP_ITERATION_FINISH_1 >= 208
|
1086
|
+
# define MSGPACK_PP_ITERATION_1 208
|
1087
|
+
# include MSGPACK_PP_FILENAME_1
|
1088
|
+
# undef MSGPACK_PP_ITERATION_1
|
1089
|
+
# endif
|
1090
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 209 && MSGPACK_PP_ITERATION_FINISH_1 >= 209
|
1091
|
+
# define MSGPACK_PP_ITERATION_1 209
|
1092
|
+
# include MSGPACK_PP_FILENAME_1
|
1093
|
+
# undef MSGPACK_PP_ITERATION_1
|
1094
|
+
# endif
|
1095
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 210 && MSGPACK_PP_ITERATION_FINISH_1 >= 210
|
1096
|
+
# define MSGPACK_PP_ITERATION_1 210
|
1097
|
+
# include MSGPACK_PP_FILENAME_1
|
1098
|
+
# undef MSGPACK_PP_ITERATION_1
|
1099
|
+
# endif
|
1100
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 211 && MSGPACK_PP_ITERATION_FINISH_1 >= 211
|
1101
|
+
# define MSGPACK_PP_ITERATION_1 211
|
1102
|
+
# include MSGPACK_PP_FILENAME_1
|
1103
|
+
# undef MSGPACK_PP_ITERATION_1
|
1104
|
+
# endif
|
1105
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 212 && MSGPACK_PP_ITERATION_FINISH_1 >= 212
|
1106
|
+
# define MSGPACK_PP_ITERATION_1 212
|
1107
|
+
# include MSGPACK_PP_FILENAME_1
|
1108
|
+
# undef MSGPACK_PP_ITERATION_1
|
1109
|
+
# endif
|
1110
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 213 && MSGPACK_PP_ITERATION_FINISH_1 >= 213
|
1111
|
+
# define MSGPACK_PP_ITERATION_1 213
|
1112
|
+
# include MSGPACK_PP_FILENAME_1
|
1113
|
+
# undef MSGPACK_PP_ITERATION_1
|
1114
|
+
# endif
|
1115
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 214 && MSGPACK_PP_ITERATION_FINISH_1 >= 214
|
1116
|
+
# define MSGPACK_PP_ITERATION_1 214
|
1117
|
+
# include MSGPACK_PP_FILENAME_1
|
1118
|
+
# undef MSGPACK_PP_ITERATION_1
|
1119
|
+
# endif
|
1120
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 215 && MSGPACK_PP_ITERATION_FINISH_1 >= 215
|
1121
|
+
# define MSGPACK_PP_ITERATION_1 215
|
1122
|
+
# include MSGPACK_PP_FILENAME_1
|
1123
|
+
# undef MSGPACK_PP_ITERATION_1
|
1124
|
+
# endif
|
1125
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 216 && MSGPACK_PP_ITERATION_FINISH_1 >= 216
|
1126
|
+
# define MSGPACK_PP_ITERATION_1 216
|
1127
|
+
# include MSGPACK_PP_FILENAME_1
|
1128
|
+
# undef MSGPACK_PP_ITERATION_1
|
1129
|
+
# endif
|
1130
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 217 && MSGPACK_PP_ITERATION_FINISH_1 >= 217
|
1131
|
+
# define MSGPACK_PP_ITERATION_1 217
|
1132
|
+
# include MSGPACK_PP_FILENAME_1
|
1133
|
+
# undef MSGPACK_PP_ITERATION_1
|
1134
|
+
# endif
|
1135
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 218 && MSGPACK_PP_ITERATION_FINISH_1 >= 218
|
1136
|
+
# define MSGPACK_PP_ITERATION_1 218
|
1137
|
+
# include MSGPACK_PP_FILENAME_1
|
1138
|
+
# undef MSGPACK_PP_ITERATION_1
|
1139
|
+
# endif
|
1140
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 219 && MSGPACK_PP_ITERATION_FINISH_1 >= 219
|
1141
|
+
# define MSGPACK_PP_ITERATION_1 219
|
1142
|
+
# include MSGPACK_PP_FILENAME_1
|
1143
|
+
# undef MSGPACK_PP_ITERATION_1
|
1144
|
+
# endif
|
1145
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 220 && MSGPACK_PP_ITERATION_FINISH_1 >= 220
|
1146
|
+
# define MSGPACK_PP_ITERATION_1 220
|
1147
|
+
# include MSGPACK_PP_FILENAME_1
|
1148
|
+
# undef MSGPACK_PP_ITERATION_1
|
1149
|
+
# endif
|
1150
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 221 && MSGPACK_PP_ITERATION_FINISH_1 >= 221
|
1151
|
+
# define MSGPACK_PP_ITERATION_1 221
|
1152
|
+
# include MSGPACK_PP_FILENAME_1
|
1153
|
+
# undef MSGPACK_PP_ITERATION_1
|
1154
|
+
# endif
|
1155
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 222 && MSGPACK_PP_ITERATION_FINISH_1 >= 222
|
1156
|
+
# define MSGPACK_PP_ITERATION_1 222
|
1157
|
+
# include MSGPACK_PP_FILENAME_1
|
1158
|
+
# undef MSGPACK_PP_ITERATION_1
|
1159
|
+
# endif
|
1160
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 223 && MSGPACK_PP_ITERATION_FINISH_1 >= 223
|
1161
|
+
# define MSGPACK_PP_ITERATION_1 223
|
1162
|
+
# include MSGPACK_PP_FILENAME_1
|
1163
|
+
# undef MSGPACK_PP_ITERATION_1
|
1164
|
+
# endif
|
1165
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 224 && MSGPACK_PP_ITERATION_FINISH_1 >= 224
|
1166
|
+
# define MSGPACK_PP_ITERATION_1 224
|
1167
|
+
# include MSGPACK_PP_FILENAME_1
|
1168
|
+
# undef MSGPACK_PP_ITERATION_1
|
1169
|
+
# endif
|
1170
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 225 && MSGPACK_PP_ITERATION_FINISH_1 >= 225
|
1171
|
+
# define MSGPACK_PP_ITERATION_1 225
|
1172
|
+
# include MSGPACK_PP_FILENAME_1
|
1173
|
+
# undef MSGPACK_PP_ITERATION_1
|
1174
|
+
# endif
|
1175
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 226 && MSGPACK_PP_ITERATION_FINISH_1 >= 226
|
1176
|
+
# define MSGPACK_PP_ITERATION_1 226
|
1177
|
+
# include MSGPACK_PP_FILENAME_1
|
1178
|
+
# undef MSGPACK_PP_ITERATION_1
|
1179
|
+
# endif
|
1180
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 227 && MSGPACK_PP_ITERATION_FINISH_1 >= 227
|
1181
|
+
# define MSGPACK_PP_ITERATION_1 227
|
1182
|
+
# include MSGPACK_PP_FILENAME_1
|
1183
|
+
# undef MSGPACK_PP_ITERATION_1
|
1184
|
+
# endif
|
1185
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 228 && MSGPACK_PP_ITERATION_FINISH_1 >= 228
|
1186
|
+
# define MSGPACK_PP_ITERATION_1 228
|
1187
|
+
# include MSGPACK_PP_FILENAME_1
|
1188
|
+
# undef MSGPACK_PP_ITERATION_1
|
1189
|
+
# endif
|
1190
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 229 && MSGPACK_PP_ITERATION_FINISH_1 >= 229
|
1191
|
+
# define MSGPACK_PP_ITERATION_1 229
|
1192
|
+
# include MSGPACK_PP_FILENAME_1
|
1193
|
+
# undef MSGPACK_PP_ITERATION_1
|
1194
|
+
# endif
|
1195
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 230 && MSGPACK_PP_ITERATION_FINISH_1 >= 230
|
1196
|
+
# define MSGPACK_PP_ITERATION_1 230
|
1197
|
+
# include MSGPACK_PP_FILENAME_1
|
1198
|
+
# undef MSGPACK_PP_ITERATION_1
|
1199
|
+
# endif
|
1200
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 231 && MSGPACK_PP_ITERATION_FINISH_1 >= 231
|
1201
|
+
# define MSGPACK_PP_ITERATION_1 231
|
1202
|
+
# include MSGPACK_PP_FILENAME_1
|
1203
|
+
# undef MSGPACK_PP_ITERATION_1
|
1204
|
+
# endif
|
1205
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 232 && MSGPACK_PP_ITERATION_FINISH_1 >= 232
|
1206
|
+
# define MSGPACK_PP_ITERATION_1 232
|
1207
|
+
# include MSGPACK_PP_FILENAME_1
|
1208
|
+
# undef MSGPACK_PP_ITERATION_1
|
1209
|
+
# endif
|
1210
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 233 && MSGPACK_PP_ITERATION_FINISH_1 >= 233
|
1211
|
+
# define MSGPACK_PP_ITERATION_1 233
|
1212
|
+
# include MSGPACK_PP_FILENAME_1
|
1213
|
+
# undef MSGPACK_PP_ITERATION_1
|
1214
|
+
# endif
|
1215
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 234 && MSGPACK_PP_ITERATION_FINISH_1 >= 234
|
1216
|
+
# define MSGPACK_PP_ITERATION_1 234
|
1217
|
+
# include MSGPACK_PP_FILENAME_1
|
1218
|
+
# undef MSGPACK_PP_ITERATION_1
|
1219
|
+
# endif
|
1220
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 235 && MSGPACK_PP_ITERATION_FINISH_1 >= 235
|
1221
|
+
# define MSGPACK_PP_ITERATION_1 235
|
1222
|
+
# include MSGPACK_PP_FILENAME_1
|
1223
|
+
# undef MSGPACK_PP_ITERATION_1
|
1224
|
+
# endif
|
1225
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 236 && MSGPACK_PP_ITERATION_FINISH_1 >= 236
|
1226
|
+
# define MSGPACK_PP_ITERATION_1 236
|
1227
|
+
# include MSGPACK_PP_FILENAME_1
|
1228
|
+
# undef MSGPACK_PP_ITERATION_1
|
1229
|
+
# endif
|
1230
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 237 && MSGPACK_PP_ITERATION_FINISH_1 >= 237
|
1231
|
+
# define MSGPACK_PP_ITERATION_1 237
|
1232
|
+
# include MSGPACK_PP_FILENAME_1
|
1233
|
+
# undef MSGPACK_PP_ITERATION_1
|
1234
|
+
# endif
|
1235
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 238 && MSGPACK_PP_ITERATION_FINISH_1 >= 238
|
1236
|
+
# define MSGPACK_PP_ITERATION_1 238
|
1237
|
+
# include MSGPACK_PP_FILENAME_1
|
1238
|
+
# undef MSGPACK_PP_ITERATION_1
|
1239
|
+
# endif
|
1240
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 239 && MSGPACK_PP_ITERATION_FINISH_1 >= 239
|
1241
|
+
# define MSGPACK_PP_ITERATION_1 239
|
1242
|
+
# include MSGPACK_PP_FILENAME_1
|
1243
|
+
# undef MSGPACK_PP_ITERATION_1
|
1244
|
+
# endif
|
1245
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 240 && MSGPACK_PP_ITERATION_FINISH_1 >= 240
|
1246
|
+
# define MSGPACK_PP_ITERATION_1 240
|
1247
|
+
# include MSGPACK_PP_FILENAME_1
|
1248
|
+
# undef MSGPACK_PP_ITERATION_1
|
1249
|
+
# endif
|
1250
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 241 && MSGPACK_PP_ITERATION_FINISH_1 >= 241
|
1251
|
+
# define MSGPACK_PP_ITERATION_1 241
|
1252
|
+
# include MSGPACK_PP_FILENAME_1
|
1253
|
+
# undef MSGPACK_PP_ITERATION_1
|
1254
|
+
# endif
|
1255
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 242 && MSGPACK_PP_ITERATION_FINISH_1 >= 242
|
1256
|
+
# define MSGPACK_PP_ITERATION_1 242
|
1257
|
+
# include MSGPACK_PP_FILENAME_1
|
1258
|
+
# undef MSGPACK_PP_ITERATION_1
|
1259
|
+
# endif
|
1260
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 243 && MSGPACK_PP_ITERATION_FINISH_1 >= 243
|
1261
|
+
# define MSGPACK_PP_ITERATION_1 243
|
1262
|
+
# include MSGPACK_PP_FILENAME_1
|
1263
|
+
# undef MSGPACK_PP_ITERATION_1
|
1264
|
+
# endif
|
1265
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 244 && MSGPACK_PP_ITERATION_FINISH_1 >= 244
|
1266
|
+
# define MSGPACK_PP_ITERATION_1 244
|
1267
|
+
# include MSGPACK_PP_FILENAME_1
|
1268
|
+
# undef MSGPACK_PP_ITERATION_1
|
1269
|
+
# endif
|
1270
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 245 && MSGPACK_PP_ITERATION_FINISH_1 >= 245
|
1271
|
+
# define MSGPACK_PP_ITERATION_1 245
|
1272
|
+
# include MSGPACK_PP_FILENAME_1
|
1273
|
+
# undef MSGPACK_PP_ITERATION_1
|
1274
|
+
# endif
|
1275
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 246 && MSGPACK_PP_ITERATION_FINISH_1 >= 246
|
1276
|
+
# define MSGPACK_PP_ITERATION_1 246
|
1277
|
+
# include MSGPACK_PP_FILENAME_1
|
1278
|
+
# undef MSGPACK_PP_ITERATION_1
|
1279
|
+
# endif
|
1280
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 247 && MSGPACK_PP_ITERATION_FINISH_1 >= 247
|
1281
|
+
# define MSGPACK_PP_ITERATION_1 247
|
1282
|
+
# include MSGPACK_PP_FILENAME_1
|
1283
|
+
# undef MSGPACK_PP_ITERATION_1
|
1284
|
+
# endif
|
1285
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 248 && MSGPACK_PP_ITERATION_FINISH_1 >= 248
|
1286
|
+
# define MSGPACK_PP_ITERATION_1 248
|
1287
|
+
# include MSGPACK_PP_FILENAME_1
|
1288
|
+
# undef MSGPACK_PP_ITERATION_1
|
1289
|
+
# endif
|
1290
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 249 && MSGPACK_PP_ITERATION_FINISH_1 >= 249
|
1291
|
+
# define MSGPACK_PP_ITERATION_1 249
|
1292
|
+
# include MSGPACK_PP_FILENAME_1
|
1293
|
+
# undef MSGPACK_PP_ITERATION_1
|
1294
|
+
# endif
|
1295
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 250 && MSGPACK_PP_ITERATION_FINISH_1 >= 250
|
1296
|
+
# define MSGPACK_PP_ITERATION_1 250
|
1297
|
+
# include MSGPACK_PP_FILENAME_1
|
1298
|
+
# undef MSGPACK_PP_ITERATION_1
|
1299
|
+
# endif
|
1300
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 251 && MSGPACK_PP_ITERATION_FINISH_1 >= 251
|
1301
|
+
# define MSGPACK_PP_ITERATION_1 251
|
1302
|
+
# include MSGPACK_PP_FILENAME_1
|
1303
|
+
# undef MSGPACK_PP_ITERATION_1
|
1304
|
+
# endif
|
1305
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 252 && MSGPACK_PP_ITERATION_FINISH_1 >= 252
|
1306
|
+
# define MSGPACK_PP_ITERATION_1 252
|
1307
|
+
# include MSGPACK_PP_FILENAME_1
|
1308
|
+
# undef MSGPACK_PP_ITERATION_1
|
1309
|
+
# endif
|
1310
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 253 && MSGPACK_PP_ITERATION_FINISH_1 >= 253
|
1311
|
+
# define MSGPACK_PP_ITERATION_1 253
|
1312
|
+
# include MSGPACK_PP_FILENAME_1
|
1313
|
+
# undef MSGPACK_PP_ITERATION_1
|
1314
|
+
# endif
|
1315
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 254 && MSGPACK_PP_ITERATION_FINISH_1 >= 254
|
1316
|
+
# define MSGPACK_PP_ITERATION_1 254
|
1317
|
+
# include MSGPACK_PP_FILENAME_1
|
1318
|
+
# undef MSGPACK_PP_ITERATION_1
|
1319
|
+
# endif
|
1320
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 255 && MSGPACK_PP_ITERATION_FINISH_1 >= 255
|
1321
|
+
# define MSGPACK_PP_ITERATION_1 255
|
1322
|
+
# include MSGPACK_PP_FILENAME_1
|
1323
|
+
# undef MSGPACK_PP_ITERATION_1
|
1324
|
+
# endif
|
1325
|
+
# if MSGPACK_PP_ITERATION_START_1 <= 256 && MSGPACK_PP_ITERATION_FINISH_1 >= 256
|
1326
|
+
# define MSGPACK_PP_ITERATION_1 256
|
1327
|
+
# include MSGPACK_PP_FILENAME_1
|
1328
|
+
# undef MSGPACK_PP_ITERATION_1
|
1329
|
+
# endif
|
1330
|
+
# endif
|
1331
|
+
#
|
1332
|
+
# undef MSGPACK_PP_IS_ITERATING
|
1333
|
+
#
|
1334
|
+
# undef MSGPACK_PP_ITERATION_DEPTH
|
1335
|
+
# define MSGPACK_PP_ITERATION_DEPTH() 0
|
1336
|
+
#
|
1337
|
+
# undef MSGPACK_PP_ITERATION_START_1
|
1338
|
+
# undef MSGPACK_PP_ITERATION_FINISH_1
|
1339
|
+
# undef MSGPACK_PP_FILENAME_1
|
1340
|
+
#
|
1341
|
+
# undef MSGPACK_PP_ITERATION_FLAGS_1
|
1342
|
+
# undef MSGPACK_PP_ITERATION_PARAMS_1
|