Skip to content
This repository was archived by the owner on Apr 23, 2024. It is now read-only.
This repository was archived by the owner on Apr 23, 2024. It is now read-only.

32-bit platform support #6

Closed
Closed
@jwijffels

Description

@jwijffels

I'm checking the R packages which I developed at https://github.com/bnosac/tokenizers.bpe which wraps the c++ code.
This works fine on mingw 64-bit and on Ubuntu but using mingw 32 bit on Windows, I'm getting compilation problems related to cpp/third_party/flat_hash_map.h giving further issues when using the code to do byte pair encoding.
Could you advise on how to solve these? Below the issues (full trace log at https://win-builder.r-project.org/mBBw27b161WH/00install.out).

Trace log

d:/Compiler/gcc-4.9.3/mingw_32/bin/g++  -std=gnu++11 -I"D:/RCompile/recent/R/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -I./youtokentome/cpp -I./youtokentome/cpp/third_party -I"d:/RCompile/CRANguest/R-devel/lib/Rcpp/include"   -I"d:/Compiler/gcc-4.9.3/local330/include"     -O2 -Wall  -mtune=core2 -c youtokentome/cpp/utils.cpp -o youtokentome/cpp/utils.o
In file included from youtokentome/cpp/utils.h:6:0,
                 from youtokentome/cpp/utils.cpp:2:
youtokentome/cpp/third_party/flat_hash_map.h: In function 'int8_t ska::detailv3::log2(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:226:31: warning: right shift count >= width of type
             value |= value >> 32;
                               ^
youtokentome/cpp/third_party/flat_hash_map.h: In function 'size_t ska::detailv3::next_power_of_two(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:261:23: warning: right shift count >= width of type
             i |= i >> 32;
                       ^
In file included from youtokentome/cpp/utils.h:6:0,
                 from youtokentome/cpp/utils.cpp:2:
youtokentome/cpp/third_party/flat_hash_map.h: In member function 'size_t (* ska::prime_number_hash_policy::next_size_over(size_t&) const)(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5351951779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
                     };
                     ^
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '6743036717ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8495693897ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '10703903591ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '13486073473ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '16991387857ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '21407807219ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '26972146961ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '33982775741ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '42815614441ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '53944293929ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '67965551447ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '85631228929ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '107888587883ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '135931102921ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '171262457903ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '215777175787ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '271862205833ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '342524915839ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '431554351609ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '543724411781ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '685049831731ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '863108703229ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1087448823553ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1370099663459ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1726217406467ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2174897647073ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2740199326961ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3452434812973ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4349795294267ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5480398654009ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '6904869625999ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8699590588571ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '10960797308051ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '13809739252051ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '17399181177241ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '21921594616111ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '27619478504183ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '34798362354533ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '43843189232363ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '55238957008387ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '69596724709081ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '87686378464759ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '110477914016779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '139193449418173ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '175372756929481ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '220955828033581ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '278386898836457ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '350745513859007ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '441911656067171ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '556773797672909ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '701491027718027ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '883823312134381ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1113547595345903ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1402982055436147ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1767646624268779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2227095190691797ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2805964110872297ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3535293248537579ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4454190381383713ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5611928221744609ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '7070586497075177ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8908380762767489ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '11223856443489329ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '14141172994150357ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '17816761525534927ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '22447712886978529ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '28282345988300791ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '35633523051069991ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '44895425773957261ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '56564691976601587ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '71267046102139967ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '89790851547914507ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '113129383953203213ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '142534092204280003ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '179581703095829107ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '226258767906406483ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '285068184408560057ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '359163406191658253ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '452517535812813007ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '570136368817120201ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '718326812383316683ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '905035071625626043ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1140272737634240411ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1436653624766633509ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1810070143251252131ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2280545475268481167ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2873307249533267101ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3620140286502504283ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4561090950536962147ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5746614499066534157ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '7240280573005008577ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '9122181901073924329ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '11493228998133068689ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '14480561146010017169ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '18446744073709551557ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
d:/Compiler/gcc-4.9.3/mingw_32/bin/g++  -std=gnu++11 -I"D:/RCompile/recent/R/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -I./youtokentome/cpp -I./youtokentome/cpp/third_party -I"d:/RCompile/CRANguest/R-devel/lib/Rcpp/include"   -I"d:/Compiler/gcc-4.9.3/local330/include"     -O2 -Wall  -mtune=core2 -c youtokentome/cpp/bpe.cpp -o youtokentome/cpp/bpe.o
In file included from youtokentome/cpp/bpe.h:6:0,
                 from youtokentome/cpp/bpe.cpp:4:
youtokentome/cpp/third_party/flat_hash_map.h: In function 'int8_t ska::detailv3::log2(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:226:31: warning: right shift count >= width of type
             value |= value >> 32;
                               ^
youtokentome/cpp/third_party/flat_hash_map.h: In function 'size_t ska::detailv3::next_power_of_two(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:261:23: warning: right shift count >= width of type
             i |= i >> 32;
                       ^
In file included from youtokentome/cpp/bpe.h:6:0,
                 from youtokentome/cpp/bpe.cpp:4:
youtokentome/cpp/third_party/flat_hash_map.h: In member function 'size_t (* ska::prime_number_hash_policy::next_size_over(size_t&) const)(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5351951779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
                     };
                     ^
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '6743036717ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8495693897ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '10703903591ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '13486073473ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '16991387857ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '21407807219ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '26972146961ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '33982775741ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '42815614441ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '53944293929ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '67965551447ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '85631228929ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '107888587883ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '135931102921ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '171262457903ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '215777175787ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '271862205833ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '342524915839ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '431554351609ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '543724411781ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '685049831731ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '863108703229ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1087448823553ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1370099663459ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1726217406467ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2174897647073ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2740199326961ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3452434812973ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4349795294267ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5480398654009ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '6904869625999ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8699590588571ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '10960797308051ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '13809739252051ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '17399181177241ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '21921594616111ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '27619478504183ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '34798362354533ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '43843189232363ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '55238957008387ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '69596724709081ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '87686378464759ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '110477914016779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '139193449418173ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '175372756929481ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '220955828033581ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '278386898836457ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '350745513859007ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '441911656067171ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '556773797672909ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '701491027718027ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '883823312134381ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1113547595345903ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1402982055436147ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1767646624268779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2227095190691797ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2805964110872297ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3535293248537579ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4454190381383713ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5611928221744609ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '7070586497075177ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8908380762767489ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '11223856443489329ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '14141172994150357ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '17816761525534927ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '22447712886978529ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '28282345988300791ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '35633523051069991ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '44895425773957261ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '56564691976601587ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '71267046102139967ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '89790851547914507ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '113129383953203213ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '142534092204280003ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '179581703095829107ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '226258767906406483ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '285068184408560057ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '359163406191658253ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '452517535812813007ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '570136368817120201ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '718326812383316683ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '905035071625626043ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1140272737634240411ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1436653624766633509ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1810070143251252131ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2280545475268481167ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2873307249533267101ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3620140286502504283ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4561090950536962147ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5746614499066534157ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '7240280573005008577ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '9122181901073924329ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '11493228998133068689ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '14480561146010017169ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '18446744073709551557ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/bpe.cpp: In function 'vkcom::BPEState vkcom::learn_bpe_from_string(std::string&, int, const string&, vkcom::BpeConfig)':
youtokentome/cpp/bpe.cpp:1070:40: warning: narrowing conversion of '(long long unsigned int)x.std::pair<long long unsigned int, long long unsigned int>::second' from 'long long unsigned int' to 'size_t {aka unsigned int}' inside { } [-Wnarrowing]
     merge_order.push({x.second, ka, kb});
                                        ^
d:/Compiler/gcc-4.9.3/mingw_32/bin/g++  -std=gnu++11 -I"D:/RCompile/recent/R/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -I./youtokentome/cpp -I./youtokentome/cpp/third_party -I"d:/RCompile/CRANguest/R-devel/lib/Rcpp/include"   -I"d:/Compiler/gcc-4.9.3/local330/include"     -O2 -Wall  -mtune=core2 -c youtokentome/cpp/utf8.cpp -o youtokentome/cpp/utf8.o
In file included from youtokentome/cpp/utils.h:6:0,
                 from youtokentome/cpp/utf8.h:3,
                 from youtokentome/cpp/utf8.cpp:2:
youtokentome/cpp/third_party/flat_hash_map.h: In function 'int8_t ska::detailv3::log2(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:226:31: warning: right shift count >= width of type
             value |= value >> 32;
                               ^
youtokentome/cpp/third_party/flat_hash_map.h: In function 'size_t ska::detailv3::next_power_of_two(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:261:23: warning: right shift count >= width of type
             i |= i >> 32;
                       ^
In file included from youtokentome/cpp/utils.h:6:0,
                 from youtokentome/cpp/utf8.h:3,
                 from youtokentome/cpp/utf8.cpp:2:
youtokentome/cpp/third_party/flat_hash_map.h: In member function 'size_t (* ska::prime_number_hash_policy::next_size_over(size_t&) const)(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5351951779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
                     };
                     ^
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '6743036717ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8495693897ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '10703903591ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '13486073473ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '16991387857ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '21407807219ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '26972146961ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '33982775741ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '42815614441ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '53944293929ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '67965551447ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '85631228929ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '107888587883ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '135931102921ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '171262457903ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '215777175787ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '271862205833ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '342524915839ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '431554351609ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '543724411781ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '685049831731ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '863108703229ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1087448823553ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1370099663459ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1726217406467ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2174897647073ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2740199326961ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3452434812973ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4349795294267ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5480398654009ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '6904869625999ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8699590588571ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '10960797308051ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '13809739252051ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '17399181177241ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '21921594616111ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '27619478504183ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '34798362354533ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '43843189232363ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '55238957008387ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '69596724709081ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '87686378464759ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '110477914016779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '139193449418173ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '175372756929481ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '220955828033581ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '278386898836457ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '350745513859007ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '441911656067171ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '556773797672909ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '701491027718027ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '883823312134381ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1113547595345903ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1402982055436147ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1767646624268779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2227095190691797ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2805964110872297ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3535293248537579ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4454190381383713ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5611928221744609ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '7070586497075177ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8908380762767489ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '11223856443489329ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '14141172994150357ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '17816761525534927ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '22447712886978529ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '28282345988300791ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '35633523051069991ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '44895425773957261ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '56564691976601587ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '71267046102139967ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '89790851547914507ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '113129383953203213ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '142534092204280003ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '179581703095829107ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '226258767906406483ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '285068184408560057ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '359163406191658253ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '452517535812813007ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '570136368817120201ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '718326812383316683ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '905035071625626043ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1140272737634240411ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1436653624766633509ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1810070143251252131ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2280545475268481167ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2873307249533267101ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3620140286502504283ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4561090950536962147ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5746614499066534157ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '7240280573005008577ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '9122181901073924329ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '11493228998133068689ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '14480561146010017169ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '18446744073709551557ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
d:/Compiler/gcc-4.9.3/mingw_32/bin/g++  -std=gnu++11 -I"D:/RCompile/recent/R/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -I./youtokentome/cpp -I./youtokentome/cpp/third_party -I"d:/RCompile/CRANguest/R-devel/lib/Rcpp/include"   -I"d:/Compiler/gcc-4.9.3/local330/include"     -O2 -Wall  -mtune=core2 -c rcpp_youtokentome.cpp -o rcpp_youtokentome.o
In file included from ./youtokentome/cpp/bpe.h:6:0,
                 from rcpp_youtokentome.cpp:3:
./youtokentome/cpp/third_party/flat_hash_map.h: In function 'int8_t ska::detailv3::log2(size_t)':
./youtokentome/cpp/third_party/flat_hash_map.h:226:31: warning: right shift count >= width of type
             value |= value >> 32;
                               ^
./youtokentome/cpp/third_party/flat_hash_map.h: In function 'size_t ska::detailv3::next_power_of_two(size_t)':
./youtokentome/cpp/third_party/flat_hash_map.h:261:23: warning: right shift count >= width of type
             i |= i >> 32;
                       ^
In file included from ./youtokentome/cpp/bpe.h:6:0,
                 from rcpp_youtokentome.cpp:3:
./youtokentome/cpp/third_party/flat_hash_map.h: In member function 'size_t (* ska::prime_number_hash_policy::next_size_over(size_t&) const)(size_t)':
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5351951779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
                     };
                     ^
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '6743036717ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8495693897ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '10703903591ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '13486073473ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '16991387857ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '21407807219ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '26972146961ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '33982775741ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '42815614441ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '53944293929ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '67965551447ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '85631228929ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '107888587883ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '135931102921ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '171262457903ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '215777175787ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '271862205833ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '342524915839ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '431554351609ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '543724411781ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '685049831731ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '863108703229ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1087448823553ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1370099663459ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1726217406467ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2174897647073ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2740199326961ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3452434812973ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4349795294267ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5480398654009ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '6904869625999ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8699590588571ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '10960797308051ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '13809739252051ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '17399181177241ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '21921594616111ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '27619478504183ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '34798362354533ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '43843189232363ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '55238957008387ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '69596724709081ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '87686378464759ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '110477914016779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '139193449418173ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '175372756929481ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '220955828033581ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '278386898836457ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '350745513859007ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '441911656067171ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '556773797672909ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '701491027718027ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '883823312134381ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1113547595345903ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1402982055436147ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1767646624268779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2227095190691797ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2805964110872297ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3535293248537579ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4454190381383713ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5611928221744609ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '7070586497075177ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8908380762767489ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '11223856443489329ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '14141172994150357ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '17816761525534927ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '22447712886978529ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '28282345988300791ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '35633523051069991ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '44895425773957261ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '56564691976601587ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '71267046102139967ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '89790851547914507ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '113129383953203213ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '142534092204280003ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '179581703095829107ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '226258767906406483ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '285068184408560057ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '359163406191658253ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '452517535812813007ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '570136368817120201ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '718326812383316683ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '905035071625626043ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1140272737634240411ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1436653624766633509ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1810070143251252131ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2280545475268481167ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2873307249533267101ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3620140286502504283ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4561090950536962147ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5746614499066534157ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '7240280573005008577ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '9122181901073924329ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '11493228998133068689ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '14480561146010017169ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '18446744073709551557ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
./youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
d:/Compiler/gcc-4.9.3/mingw_32/bin/g++  -std=gnu++11 -I"D:/RCompile/recent/R/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -I./youtokentome/cpp -I./youtokentome/cpp/third_party -I"d:/RCompile/CRANguest/R-devel/lib/Rcpp/include"   -I"d:/Compiler/gcc-4.9.3/local330/include"     -O2 -Wall  -mtune=core2 -c RcppExports.cpp -o RcppExports.o
d:/Compiler/gcc-4.9.3/mingw_32/bin/g++ -shared -s -static-libgcc -o tokenizers.bpe.dll tmp.def youtokentome/cpp/utils.o youtokentome/cpp/bpe.o youtokentome/cpp/utf8.o rcpp_youtokentome.o RcppExports.o -pthread -Ld:/Compiler/gcc-4.9.3/local330/lib/i386 -Ld:/Compiler/gcc-4.9.3/local330/lib -LD:/RCompile/recent/R/bin/i386 -lR
rm -f youtokentome/cpp/utils.o youtokentome/cpp/bpe.o youtokentome/cpp/utf8.o rcpp_youtokentome.o RcppExports.o
d:/Compiler/gcc-4.9.3/mingw_32/bin/g++  -std=gnu++11 -I"D:/RCompile/recent/R/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -I./youtokentome/cpp -I./youtokentome/cpp/third_party -I"d:/RCompile/CRANguest/R-devel/lib/Rcpp/include"   -I"d:/Compiler/gcc-4.9.3/local330/include"     -O2 -Wall  -mtune=core2 -c youtokentome/cpp/utils.cpp -o youtokentome/cpp/utils.o
In file included from youtokentome/cpp/utils.h:6:0,
                 from youtokentome/cpp/utils.cpp:2:
youtokentome/cpp/third_party/flat_hash_map.h: In function 'int8_t ska::detailv3::log2(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:226:31: warning: right shift count >= width of type
             value |= value >> 32;
                               ^
youtokentome/cpp/third_party/flat_hash_map.h: In function 'size_t ska::detailv3::next_power_of_two(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:261:23: warning: right shift count >= width of type
             i |= i >> 32;
                       ^
In file included from youtokentome/cpp/utils.h:6:0,
                 from youtokentome/cpp/utils.cpp:2:
youtokentome/cpp/third_party/flat_hash_map.h: In member function 'size_t (* ska::prime_number_hash_policy::next_size_over(size_t&) const)(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5351951779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
                     };
                     ^
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '6743036717ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8495693897ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '10703903591ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '13486073473ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '16991387857ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '21407807219ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '26972146961ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '33982775741ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '42815614441ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '53944293929ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '67965551447ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '85631228929ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '107888587883ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '135931102921ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '171262457903ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '215777175787ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '271862205833ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '342524915839ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '431554351609ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '543724411781ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '685049831731ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '863108703229ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1087448823553ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1370099663459ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1726217406467ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2174897647073ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2740199326961ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3452434812973ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4349795294267ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5480398654009ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '6904869625999ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8699590588571ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '10960797308051ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '13809739252051ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '17399181177241ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '21921594616111ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '27619478504183ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '34798362354533ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '43843189232363ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '55238957008387ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '69596724709081ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '87686378464759ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '110477914016779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '139193449418173ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '175372756929481ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '220955828033581ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '278386898836457ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '350745513859007ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '441911656067171ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '556773797672909ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '701491027718027ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '883823312134381ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1113547595345903ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1402982055436147ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1767646624268779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2227095190691797ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2805964110872297ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3535293248537579ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4454190381383713ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5611928221744609ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '7070586497075177ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8908380762767489ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '11223856443489329ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '14141172994150357ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '17816761525534927ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '22447712886978529ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '28282345988300791ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '35633523051069991ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '44895425773957261ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '56564691976601587ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '71267046102139967ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '89790851547914507ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '113129383953203213ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '142534092204280003ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '179581703095829107ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '226258767906406483ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '285068184408560057ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '359163406191658253ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '452517535812813007ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '570136368817120201ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '718326812383316683ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '905035071625626043ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1140272737634240411ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1436653624766633509ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1810070143251252131ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2280545475268481167ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2873307249533267101ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3620140286502504283ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4561090950536962147ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5746614499066534157ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '7240280573005008577ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '9122181901073924329ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '11493228998133068689ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '14480561146010017169ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '18446744073709551557ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
d:/Compiler/gcc-4.9.3/mingw_32/bin/g++  -std=gnu++11 -I"D:/RCompile/recent/R/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -I./youtokentome/cpp -I./youtokentome/cpp/third_party -I"d:/RCompile/CRANguest/R-devel/lib/Rcpp/include"   -I"d:/Compiler/gcc-4.9.3/local330/include"     -O2 -Wall  -mtune=core2 -c youtokentome/cpp/bpe.cpp -o youtokentome/cpp/bpe.o
In file included from youtokentome/cpp/bpe.h:6:0,
                 from youtokentome/cpp/bpe.cpp:4:
youtokentome/cpp/third_party/flat_hash_map.h: In function 'int8_t ska::detailv3::log2(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:226:31: warning: right shift count >= width of type
             value |= value >> 32;
                               ^
youtokentome/cpp/third_party/flat_hash_map.h: In function 'size_t ska::detailv3::next_power_of_two(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:261:23: warning: right shift count >= width of type
             i |= i >> 32;
                       ^
In file included from youtokentome/cpp/bpe.h:6:0,
                 from youtokentome/cpp/bpe.cpp:4:
youtokentome/cpp/third_party/flat_hash_map.h: In member function 'size_t (* ska::prime_number_hash_policy::next_size_over(size_t&) const)(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5351951779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
                     };
                     ^
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '6743036717ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8495693897ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '10703903591ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '13486073473ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '16991387857ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '21407807219ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '26972146961ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '33982775741ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '42815614441ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '53944293929ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '67965551447ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '85631228929ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '107888587883ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '135931102921ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '171262457903ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '215777175787ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '271862205833ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '342524915839ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '431554351609ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '543724411781ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '685049831731ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '863108703229ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1087448823553ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1370099663459ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1726217406467ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2174897647073ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2740199326961ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3452434812973ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4349795294267ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5480398654009ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '6904869625999ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8699590588571ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '10960797308051ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '13809739252051ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '17399181177241ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '21921594616111ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '27619478504183ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '34798362354533ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '43843189232363ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '55238957008387ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '69596724709081ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '87686378464759ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '110477914016779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '139193449418173ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '175372756929481ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '220955828033581ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '278386898836457ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '350745513859007ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '441911656067171ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '556773797672909ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '701491027718027ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '883823312134381ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1113547595345903ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1402982055436147ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1767646624268779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2227095190691797ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2805964110872297ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3535293248537579ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4454190381383713ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5611928221744609ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '7070586497075177ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8908380762767489ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '11223856443489329ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '14141172994150357ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '17816761525534927ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '22447712886978529ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '28282345988300791ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '35633523051069991ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '44895425773957261ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '56564691976601587ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '71267046102139967ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '89790851547914507ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '113129383953203213ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '142534092204280003ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '179581703095829107ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '226258767906406483ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '285068184408560057ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '359163406191658253ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '452517535812813007ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '570136368817120201ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '718326812383316683ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '905035071625626043ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1140272737634240411ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1436653624766633509ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1810070143251252131ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2280545475268481167ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2873307249533267101ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3620140286502504283ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4561090950536962147ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5746614499066534157ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '7240280573005008577ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '9122181901073924329ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '11493228998133068689ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '14480561146010017169ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '18446744073709551557ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/bpe.cpp: In function 'vkcom::BPEState vkcom::learn_bpe_from_string(std::string&, int, const string&, vkcom::BpeConfig)':
youtokentome/cpp/bpe.cpp:1070:40: warning: narrowing conversion of '(long long unsigned int)x.std::pair<long long unsigned int, long long unsigned int>::second' from 'long long unsigned int' to 'size_t {aka unsigned int}' inside { } [-Wnarrowing]
     merge_order.push({x.second, ka, kb});
                                        ^
d:/Compiler/gcc-4.9.3/mingw_32/bin/g++  -std=gnu++11 -I"D:/RCompile/recent/R/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -I./youtokentome/cpp -I./youtokentome/cpp/third_party -I"d:/RCompile/CRANguest/R-devel/lib/Rcpp/include"   -I"d:/Compiler/gcc-4.9.3/local330/include"     -O2 -Wall  -mtune=core2 -c youtokentome/cpp/utf8.cpp -o youtokentome/cpp/utf8.o
In file included from youtokentome/cpp/utils.h:6:0,
                 from youtokentome/cpp/utf8.h:3,
                 from youtokentome/cpp/utf8.cpp:2:
youtokentome/cpp/third_party/flat_hash_map.h: In function 'int8_t ska::detailv3::log2(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:226:31: warning: right shift count >= width of type
             value |= value >> 32;
                               ^
youtokentome/cpp/third_party/flat_hash_map.h: In function 'size_t ska::detailv3::next_power_of_two(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:261:23: warning: right shift count >= width of type
             i |= i >> 32;
                       ^
In file included from youtokentome/cpp/utils.h:6:0,
                 from youtokentome/cpp/utf8.h:3,
                 from youtokentome/cpp/utf8.cpp:2:
youtokentome/cpp/third_party/flat_hash_map.h: In member function 'size_t (* ska::prime_number_hash_policy::next_size_over(size_t&) const)(size_t)':
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5351951779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
                     };
                     ^
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '6743036717ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8495693897ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '10703903591ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '13486073473ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '16991387857ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '21407807219ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '26972146961ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '33982775741ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '42815614441ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '53944293929ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '67965551447ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '85631228929ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '107888587883ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '135931102921ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '171262457903ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '215777175787ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '271862205833ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '342524915839ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '431554351609ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '543724411781ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '685049831731ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '863108703229ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1087448823553ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1370099663459ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1726217406467ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2174897647073ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2740199326961ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3452434812973ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4349795294267ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5480398654009ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '6904869625999ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8699590588571ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '10960797308051ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '13809739252051ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '17399181177241ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '21921594616111ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '27619478504183ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '34798362354533ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '43843189232363ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '55238957008387ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '69596724709081ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '87686378464759ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '110477914016779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '139193449418173ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '175372756929481ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '220955828033581ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '278386898836457ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '350745513859007ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '441911656067171ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '556773797672909ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '701491027718027ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '883823312134381ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1113547595345903ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1402982055436147ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '1767646624268779ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2227095190691797ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '2805964110872297ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '3535293248537579ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '4454190381383713ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '5611928221744609ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '7070586497075177ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '8908380762767489ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '11223856443489329ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '14141172994150357ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '17816761525534927ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '22447712886978529ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '28282345988300791ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '35633523051069991ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '44895425773957261ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '56564691976601587ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '71267046102139967ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '89790851547914507ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '113129383953203213ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '142534092204280003ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '179581703095829107ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '226258767906406483ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '285068184408560057ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '359163406191658253ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '452517535812813007ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: large integer implicitly truncated to unsigned type [-Woverflow]
youtokentome/cpp/third_party/flat_hash_map.h:1181:21: warning: narrowing conversion of '570136368817120201ull' from 'long long unsigned int' to 'const size_t {aka const unsigned int}' inside { } [-Wnarrowing]
....

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions