diff --git a/.travis.yml b/.travis.yml index c0368b4..cbb660d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,51 +1,15 @@ -env: - global: - - secure: apzb29h6d8RuJ2deS+VFtbIpoHjqEZo5mXIW4fcLel0eCNtzJNqvuPadCPJkyyyfBfX9ZZp7BNwwrKx/LA8x1KI6PD4CLbaoYONe7JJIAoBiCYqroK+DRf92ZmydVj+dJoJchuwBIvyUU+tFo2wQHCt+dBHrhjHnIediS/3LmA7V8KehAiRwVxkdcLS3dWohEZhIwt2z+utKoyWsdF/MU64ltVUpzpi3YfPIuGmGPHwsPBjemIEg5NH3UWcveulBUGILkfoDvxvqdvTTs21zchZflnk/70VDSRF4EQI4RPGgQi+MMLNx25Odftm1J/THTHz08pKCKWdXlJNWyJEveIZ4UrD3TSsuHyhVGCNrGzIETspVa+yvo8RfPLR2FbeK4N/YxoZaKNX27vrI61bPAperz02SYRTdOCxDaH1owWAXGWbpxptF9Sqrj1xLK1zuIJql+MtQzPPfLCJAtciEctpVeim11FZhDzRjJkwAthnHW8XYzgD0qc592rvf7jneiWci2N+XWURrY+aBoSOlapBTDOINt1WtXjwgfNM5OuJSpHahnIN4ZKixaeS9YBXjJ4GO3u1ZRl1H8NBX0ETIqHNNuOEUvtnmHKhQQHs4G2BlK3NDswE+d6LQ5S/l6pEmHRsq1OGaj+Qb6HiYgLyDHmAapROP3A/bkpyxXLHLBrw= - notifications: - slack: - secure: ujjO4WTtnEa5yq5HuEy+dcqjmEOTuoYyaRIBnt7dgf+8tv+nv4NsvGNURaYH2QTXjMOnVTTUUmPb3YnMgAQCXQlVQTsfqq1kHXgBNZPVYvazN9NB+3sseGBv5kwur+BWP3gLPgtfU0kuNSLFC+g2BoGjZ6dZZQ+jq4UtYCp/9NhZlbQVRj7HiKLTbTHS4UPh/ZxAZqT4hSN75NlY4P+7+9QkyOjcL7bQy8jlpTDE6Y0FJtQk6ibWqoigmMGoPZv9JVvpL4SPZV/3v8cwzXiYfhBJkOqpYjnC62pGF4kzemn3yTaIJFQoN5xiXQiCkg4IWylNt1G4DTd5zYmj/zLqPfH2nuABJBw27hZxYUxJwxDJUojz84phnOq5iv+7MmbkPXhQSo+mM81a2sUfQWcncU5bFV+ZM5ZhXCUZdpjbQRiCzD6+/bFBHxkRCpPy0WIDFaEhixXeAzAYrafNZJ10EIqKVfdO9AZCwSmzV/q84AK1ZZkyHfOHdhafoBCZ9+nQbOkesoNPiBN6aqqBatgFExT8qs445TCDoIKV2xF36V9hw26sRv3nqRclDGfDkmlEPJm0PdNT8e5lxpASgY2DcC7AdT2GqcWvhbq9zPh4y8okBnR4Xc+r1gBYbYgL6htiIISdv1L8pNiayZIR49OXiKFd8SILRCPcye/2Lz+UCkc= email: false -apt: - update: true -cache: - apt: true - directories: - - "$TRAVIS_BUILD_DIR/include" - - "$TRAVIS_BUILD_DIR/lib" - language: cpp os: - linux -sudo: required dist: trusty -compiler: - - gcc - -before_install: - - if [ "$TRAVIS_OS_NAME" = "linux" ]; then chmod +x ./travis/linux/before_install.sh; source ./travis/linux/before_install.sh; fi; - - if [ "$TRAVIS_OS_NAME" = "osx" ]; then chmod +x ./travis/mac/before_install.sh; source ./travis/mac/before_install.sh; fi; -install: - - if [ "$TRAVIS_OS_NAME" = "linux" ]; then chmod +x ./travis/linux/install.sh; ./travis/linux/install.sh; fi; - - if [ "$TRAVIS_OS_NAME" = "osx" ]; then chmod +x ./travis/osx/install.sh; ./travis/osx/install.sh; fi; - - wget -q -O boost_1_65_1.tar.gz http://sourceforge.net/projects/boost/files/boost/1.65.1/boost_1_65_1.tar.gz/download - - tar xzf boost_1_65_1.tar.gz - - cd boost_1_65_1 - - ./bootstrap.sh - - ./b2 link=static,shared install -d0 -j ${CPU_NUM} --prefix=$TRAVIS_BUILD_DIR --with-program_options - - export LD_LIBRARY_PATH=../lib:$LD_LIBRARY_PATH - - cd ../ -script: - - g++-7 --version - - cd tests - - make -j ${CPU_NUM} - - make run - - make clean - - make -f Makefile.zlib -j ${CPU_NUM} run - - make -f Makefile.zlib clean - - chmod +x ./cstring/sde_script.sh - - ./cstring/sde_script.sh 1 - - ./cstring/sde_script.sh 0 - - make -f ./cstring/Makefile -j ${CPU_NUM} - - make -f ./cstring/Makefile run && make -f ./cstring/Makefile clean +jobs: + include: + - stage: Run container build + os: linux + services: docker + script: + - cd tests + - SDE_URL="$(echo $SDE_URL | base64 -d)" docker-compose run test diff --git a/example/algorithm/clustering/t.cpp b/example/algorithm/clustering/t.cpp index ffc90c8..873e2b0 100644 --- a/example/algorithm/clustering/t.cpp +++ b/example/algorithm/clustering/t.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #include #include diff --git a/example/brainfk/llvm/brainfk_llvm_compiler_generator_example.cpp b/example/brainfk/llvm/brainfk_llvm_compiler_generator_example.cpp index f801e0c..ffa4255 100644 --- a/example/brainfk/llvm/brainfk_llvm_compiler_generator_example.cpp +++ b/example/brainfk/llvm/brainfk_llvm_compiler_generator_example.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #include int main() diff --git a/example/brainfk/some_brainfk_interpreter.cpp b/example/brainfk/some_brainfk_interpreter.cpp index dc8c399..e65a7f8 100644 --- a/example/brainfk/some_brainfk_interpreter.cpp +++ b/example/brainfk/some_brainfk_interpreter.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2017 Roki +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #include int main(const int argc, const char* argv[]) diff --git a/example/mpl/fractal/mandelbrot.cpp b/example/mpl/fractal/mandelbrot.cpp index fb1ebdb..a424b2d 100644 --- a/example/mpl/fractal/mandelbrot.cpp +++ b/example/mpl/fractal/mandelbrot.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // // This is a mandelbrot fractal ploter by C++ template MetaProgramming. // However, this ploter unfortunately DOES NOT work on practial machines, because it needs huge amount of memories. diff --git a/srook/algorithm.hpp b/srook/algorithm.hpp index ac7a7bc..2c79337 100644 --- a/srook/algorithm.hpp +++ b/srook/algorithm.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_ALGORITHM_HPP #define INCLUDED_ALGORITHM_HPP #include diff --git a/srook/algorithm/back.hpp b/srook/algorithm/back.hpp index 480c825..3278a6c 100644 --- a/srook/algorithm/back.hpp +++ b/srook/algorithm/back.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_ALGORITHM_EMPLACE_BACK_HPP #define INCLUDED_ALGORITHM_EMPLACE_BACK_HPP diff --git a/srook/algorithm/cat_max.hpp b/srook/algorithm/cat_max.hpp index a7211a1..ea9c7b7 100644 --- a/srook/algorithm/cat_max.hpp +++ b/srook/algorithm/cat_max.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_CAT_MAX_HPP #define INCLUDED_SROOK_ALGORITHM_CAT_MAX_HPP diff --git a/srook/algorithm/cat_min.hpp b/srook/algorithm/cat_min.hpp index 3b4f669..67a5053 100644 --- a/srook/algorithm/cat_min.hpp +++ b/srook/algorithm/cat_min.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_CAT_MIN_HPP #define INCLUDED_SROOK_ALGORITHM_CAT_MIN_HPP diff --git a/srook/algorithm/clustering/k_means/k_means.hpp b/srook/algorithm/clustering/k_means/k_means.hpp index 1db46de..0251f2e 100644 --- a/srook/algorithm/clustering/k_means/k_means.hpp +++ b/srook/algorithm/clustering/k_means/k_means.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_K_MEANS_HPP #define INCLUDED_SROOK_K_MEANS_HPP #include diff --git a/srook/algorithm/coding/zlib.hpp b/srook/algorithm/coding/zlib.hpp index 130e4a8..36574be 100644 --- a/srook/algorithm/coding/zlib.hpp +++ b/srook/algorithm/coding/zlib.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_HPP #define INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_HPP diff --git a/srook/algorithm/coding/zlib/config.hpp b/srook/algorithm/coding/zlib/config.hpp index 508683a..7112040 100644 --- a/srook/algorithm/coding/zlib/config.hpp +++ b/srook/algorithm/coding/zlib/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_CONFIG_HPP #define INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_CONFIG_HPP diff --git a/srook/algorithm/coding/zlib/exception.hpp b/srook/algorithm/coding/zlib/exception.hpp index 07eafe0..35f0a2d 100644 --- a/srook/algorithm/coding/zlib/exception.hpp +++ b/srook/algorithm/coding/zlib/exception.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_EXCEPTION_HPP #define INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_EXCEPTION_HPP diff --git a/srook/algorithm/coding/zlib/ifstream.hpp b/srook/algorithm/coding/zlib/ifstream.hpp index ab0cd20..226d8d8 100644 --- a/srook/algorithm/coding/zlib/ifstream.hpp +++ b/srook/algorithm/coding/zlib/ifstream.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_IFSTREAM_HPP #define INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_IFSTREAM_HPP diff --git a/srook/algorithm/coding/zlib/istream.hpp b/srook/algorithm/coding/zlib/istream.hpp index 9b668c0..ff9e895 100644 --- a/srook/algorithm/coding/zlib/istream.hpp +++ b/srook/algorithm/coding/zlib/istream.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_ISTREAM_HPP #define INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_ISTREAM_HPP diff --git a/srook/algorithm/coding/zlib/istreambuf.hpp b/srook/algorithm/coding/zlib/istreambuf.hpp index 8be4328..6d1ce89 100644 --- a/srook/algorithm/coding/zlib/istreambuf.hpp +++ b/srook/algorithm/coding/zlib/istreambuf.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_CODIG_ZLIB_ISTREAMBUF_HPP #define INCLUDED_SROOK_ALGORITHM_CODIG_ZLIB_ISTREAMBUF_HPP diff --git a/srook/algorithm/coding/zlib/ofstream.hpp b/srook/algorithm/coding/zlib/ofstream.hpp index e3be055..fce05dd 100644 --- a/srook/algorithm/coding/zlib/ofstream.hpp +++ b/srook/algorithm/coding/zlib/ofstream.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_OFSTREAM_HPP #define INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_OFSTREAM_HPP diff --git a/srook/algorithm/coding/zlib/ostream.hpp b/srook/algorithm/coding/zlib/ostream.hpp index 5b5f495..276fdb0 100644 --- a/srook/algorithm/coding/zlib/ostream.hpp +++ b/srook/algorithm/coding/zlib/ostream.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_OSTREAM_HPP #define INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_OSTREAM_HPP #include diff --git a/srook/algorithm/coding/zlib/ostreambuf.hpp b/srook/algorithm/coding/zlib/ostreambuf.hpp index a96c990..e70599b 100644 --- a/srook/algorithm/coding/zlib/ostreambuf.hpp +++ b/srook/algorithm/coding/zlib/ostreambuf.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_CODIG_ZLIB_OSTREAMBUF_HPP #define INCLUDED_SROOK_ALGORITHM_CODIG_ZLIB_OSTREAMBUF_HPP diff --git a/srook/algorithm/coding/zlib/z_streamer.hpp b/srook/algorithm/coding/zlib/z_streamer.hpp index 03b305a..95e74b9 100644 --- a/srook/algorithm/coding/zlib/z_streamer.hpp +++ b/srook/algorithm/coding/zlib/z_streamer.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_Z_STREAM_HPP #define INCLUDED_SROOK_ALGORITHM_CODING_ZLIB_Z_STREAM_HPP diff --git a/srook/algorithm/copy.hpp b/srook/algorithm/copy.hpp index 2317dd2..f1907e3 100644 --- a/srook/algorithm/copy.hpp +++ b/srook/algorithm/copy.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_COPY_HPP #define INCLUDED_SROOK_ALGORITHM_COPY_HPP diff --git a/srook/algorithm/copy_if.hpp b/srook/algorithm/copy_if.hpp index b335169..1bc77c2 100644 --- a/srook/algorithm/copy_if.hpp +++ b/srook/algorithm/copy_if.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_COPY_IF_HPP #define INCLUDED_SROOK_ALGORITHM_COPY_IF_HPP diff --git a/srook/algorithm/count.hpp b/srook/algorithm/count.hpp index 6e9672f..3fb79d5 100644 --- a/srook/algorithm/count.hpp +++ b/srook/algorithm/count.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_COUNT_HPP #define INCLUDED_SROOK_ALGORITHM_COUNT_HPP #include diff --git a/srook/algorithm/detail/config.hpp b/srook/algorithm/detail/config.hpp index 8a34442..727aa83 100644 --- a/srook/algorithm/detail/config.hpp +++ b/srook/algorithm/detail/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_DETAIL_CONFIG_HPP #define INCLUDED_SROOK_ALGORITHM_DETAIL_CONFIG_HPP diff --git a/srook/algorithm/detail/tempbuf.hpp b/srook/algorithm/detail/tempbuf.hpp index dc77e23..1410a30 100644 --- a/srook/algorithm/detail/tempbuf.hpp +++ b/srook/algorithm/detail/tempbuf.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_DETAIL_TEMPBUF_HPP #define INCLUDED_SROOK_ALGORITHM_DETAIL_TEMPBUF_HPP diff --git a/srook/algorithm/emplace_backer.hpp b/srook/algorithm/emplace_backer.hpp index d6795f0..d6008c4 100644 --- a/srook/algorithm/emplace_backer.hpp +++ b/srook/algorithm/emplace_backer.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_EMPLACE_BACKER_HPP #define INCLUDED_SROOK_ALGORITHM_EMPLACE_BACKER_HPP diff --git a/srook/algorithm/equal.hpp b/srook/algorithm/equal.hpp index dfe1c5e..5935e17 100644 --- a/srook/algorithm/equal.hpp +++ b/srook/algorithm/equal.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_EQUAL_HPP #define INCLUDED_SROOK_ALGORITHM_EQUAL_HPP #include diff --git a/srook/algorithm/fill.hpp b/srook/algorithm/fill.hpp index 8b4a7a6..00b24f0 100644 --- a/srook/algorithm/fill.hpp +++ b/srook/algorithm/fill.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_FILL_HPP #define INCLUDED_SROOK_ALGORITHM_FILL_HPP diff --git a/srook/algorithm/for_each.hpp b/srook/algorithm/for_each.hpp index f4d618e..0095c80 100644 --- a/srook/algorithm/for_each.hpp +++ b/srook/algorithm/for_each.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_FOREACH_HPP #define INCLUDED_SROOK_ALGORITHM_FOREACH_HPP #include diff --git a/srook/algorithm/inplace_merge.hpp b/srook/algorithm/inplace_merge.hpp index a631ae0..bac7ca3 100644 --- a/srook/algorithm/inplace_merge.hpp +++ b/srook/algorithm/inplace_merge.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_INPLACE_MERGE_HPP #define INCLUDED_SROOK_ALGORITHM_INPLACE_MERGE_HPP diff --git a/srook/algorithm/lcs.hpp b/srook/algorithm/lcs.hpp index 8ed4f30..8a724b6 100644 --- a/srook/algorithm/lcs.hpp +++ b/srook/algorithm/lcs.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_LCS_HPP #define INCLUDED_SROOK_ALGORITHM_LCS_HPP #include diff --git a/srook/algorithm/max.hpp b/srook/algorithm/max.hpp index 781d098..29d6be5 100644 --- a/srook/algorithm/max.hpp +++ b/srook/algorithm/max.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_MAX_HPP #define INCLUDED_SROOK_ALGORITHM_MAX_HPP diff --git a/srook/algorithm/max_iter.hpp b/srook/algorithm/max_iter.hpp index 434002c..59bea32 100644 --- a/srook/algorithm/max_iter.hpp +++ b/srook/algorithm/max_iter.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_MAX_ITER_HPP #define INCLUDED_SROOK_ALGORITHM_MAX_ITER_HPP diff --git a/srook/algorithm/med.hpp b/srook/algorithm/med.hpp index cfd99cd..c84464f 100644 --- a/srook/algorithm/med.hpp +++ b/srook/algorithm/med.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_MED_HPP #define INCLUDED_SROOK_ALGORITHM_MED_HPP diff --git a/srook/algorithm/med_iter.hpp b/srook/algorithm/med_iter.hpp index 7ae6817..2979200 100644 --- a/srook/algorithm/med_iter.hpp +++ b/srook/algorithm/med_iter.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_MED_ITER_HPP #define INCLUDED_SROOK_ALGORITHM_MED_ITER_HPP diff --git a/srook/algorithm/min.hpp b/srook/algorithm/min.hpp index e253c46..4e4584b 100644 --- a/srook/algorithm/min.hpp +++ b/srook/algorithm/min.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_MIN_HPP #define INCLUDED_SROOK_ALGORITHM_MIN_HPP diff --git a/srook/algorithm/min_iter.hpp b/srook/algorithm/min_iter.hpp index f10a324..219e9ed 100644 --- a/srook/algorithm/min_iter.hpp +++ b/srook/algorithm/min_iter.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_MIN_ITER_HPP #define INCLUDED_SROOK_ALGORITHM_MIN_ITER_HPP diff --git a/srook/algorithm/reverse.hpp b/srook/algorithm/reverse.hpp index 8ae0890..a69354d 100644 --- a/srook/algorithm/reverse.hpp +++ b/srook/algorithm/reverse.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_REVERSE_HPP #define INCLUDED_SROOK_ALGORITHM_REVERSE_HPP diff --git a/srook/algorithm/rotate.hpp b/srook/algorithm/rotate.hpp index 2cb6165..78d647e 100644 --- a/srook/algorithm/rotate.hpp +++ b/srook/algorithm/rotate.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_ROTATE_HPP #define INCLUDED_SROOK_ALGORITHM_ROTATE_HPP diff --git a/srook/algorithm/searching.hpp b/srook/algorithm/searching.hpp index eb29bf4..a20c9f3 100644 --- a/srook/algorithm/searching.hpp +++ b/srook/algorithm/searching.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_HPP #define INCLUDED_SROOK_ALGORITHM_SEARCHING_HPP diff --git a/srook/algorithm/searching/binary_search.hpp b/srook/algorithm/searching/binary_search.hpp index f76ef52..0f80ddd 100644 --- a/srook/algorithm/searching/binary_search.hpp +++ b/srook/algorithm/searching/binary_search.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_BINARY_SEARCH_HPP #define INCLUDED_SROOK_ALGORITHM_SEARCHING_BINARY_SEARCH_HPP diff --git a/srook/algorithm/searching/boyer_moore.hpp b/srook/algorithm/searching/boyer_moore.hpp index 445468f..0efe8d7 100644 --- a/srook/algorithm/searching/boyer_moore.hpp +++ b/srook/algorithm/searching/boyer_moore.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_BOYER_MOORE_HPP #define INCLUDED_SROOK_ALGORITHM_SEARCHING_BOYER_MOORE_HPP diff --git a/srook/algorithm/searching/boyer_moore_horspool.hpp b/srook/algorithm/searching/boyer_moore_horspool.hpp index ae0eb04..395bbda 100644 --- a/srook/algorithm/searching/boyer_moore_horspool.hpp +++ b/srook/algorithm/searching/boyer_moore_horspool.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_BOYER_MOORE_HORSPOOL_HPP #define INCLUDED_SROOK_ALGORITHM_SEARCHING_BOYER_MOORE_HORSPOOL_HPP diff --git a/srook/algorithm/searching/detail/bm_traits.hpp b/srook/algorithm/searching/detail/bm_traits.hpp index db3bfe0..254e536 100644 --- a/srook/algorithm/searching/detail/bm_traits.hpp +++ b/srook/algorithm/searching/detail/bm_traits.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_DETAIL_BM_TRAITS_HPP #define INCLUDED_SROOK_ALGORITHM_SEARCHING_DETAIL_BM_TRAITS_HPP diff --git a/srook/algorithm/searching/detail/config.hpp b/srook/algorithm/searching/detail/config.hpp index 1321b66..625b533 100644 --- a/srook/algorithm/searching/detail/config.hpp +++ b/srook/algorithm/searching/detail/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_DETAIL_CONFIG_HPP #define INCLUDED_SROOK_ALGORITHM_SEARCHING_DETAIL_CONFIG_HPP diff --git a/srook/algorithm/searching/interpolation_search.hpp b/srook/algorithm/searching/interpolation_search.hpp index da50a18..f1cd8a9 100644 --- a/srook/algorithm/searching/interpolation_search.hpp +++ b/srook/algorithm/searching/interpolation_search.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_INTERPOLATION_SEARCH_HPP #define INCLUDED_SROOK_ALGORITHM_SEARCHING_INTERPOLATION_SEARCH_HPP diff --git a/srook/algorithm/searching/jump_search.hpp b/srook/algorithm/searching/jump_search.hpp index 7b040c2..dbe5a04 100644 --- a/srook/algorithm/searching/jump_search.hpp +++ b/srook/algorithm/searching/jump_search.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_JUMP_SEARCH_HPP #define INCLUDED_SROOK_ALGORITHM_SEARCHING_JUMP_SEARCH_HPP diff --git a/srook/algorithm/searching/knuth_morris_pratt.hpp b/srook/algorithm/searching/knuth_morris_pratt.hpp index d0f55b7..e102a11 100644 --- a/srook/algorithm/searching/knuth_morris_pratt.hpp +++ b/srook/algorithm/searching/knuth_morris_pratt.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SEARCH_KNUTH_MORRIS_PRATT_HPP #define INCLUDED_SROOK_ALGORITHM_SEARCH_KNUTH_MORRIS_PRATT_HPP diff --git a/srook/algorithm/searching/longest_common_subsequence.hpp b/srook/algorithm/searching/longest_common_subsequence.hpp index 8e448f1..a176bef 100644 --- a/srook/algorithm/searching/longest_common_subsequence.hpp +++ b/srook/algorithm/searching/longest_common_subsequence.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_LONGEST_COMMON_SUBSEQUENCE_HPP #define INCLUDED_SROOK_ALGORITHM_SEARCHING_LONGEST_COMMON_SUBSEQUENCE_HPP diff --git a/srook/algorithm/searching/lower_bound.hpp b/srook/algorithm/searching/lower_bound.hpp index 3106969..a040d06 100644 --- a/srook/algorithm/searching/lower_bound.hpp +++ b/srook/algorithm/searching/lower_bound.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_LOWER_BOUND_HPP #define INCLUDED_SROOK_ALGORITHM_SEARCHING_LOWER_BOUND_HPP diff --git a/srook/algorithm/searching/upper_bound.hpp b/srook/algorithm/searching/upper_bound.hpp index fefa715..ffaa566 100644 --- a/srook/algorithm/searching/upper_bound.hpp +++ b/srook/algorithm/searching/upper_bound.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SEARCHING_UPPER_BOUND_HPP #define INCLUDED_SROOK_ALGORITHM_SEARCHING_UPPER_BOUND_HPP diff --git a/srook/algorithm/sorting.hpp b/srook/algorithm/sorting.hpp index f736e0d..44799ec 100644 --- a/srook/algorithm/sorting.hpp +++ b/srook/algorithm/sorting.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SORTING_HPP #define INCLUDED_SROOK_ALGORITHM_SORTING_HPP diff --git a/srook/algorithm/sorting/bubble_sort.hpp b/srook/algorithm/sorting/bubble_sort.hpp index 8dac350..603e760 100644 --- a/srook/algorithm/sorting/bubble_sort.hpp +++ b/srook/algorithm/sorting/bubble_sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_BUBBLE_SORT_HPP #define INCLUDED_SROOK_ALGORITHM_BUBBLE_SORT_HPP diff --git a/srook/algorithm/sorting/bucket_sort.hpp b/srook/algorithm/sorting/bucket_sort.hpp index 060770d..2fa47ec 100644 --- a/srook/algorithm/sorting/bucket_sort.hpp +++ b/srook/algorithm/sorting/bucket_sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_BUCKET_SORT_HPP #define INCLUDED_SROOK_ALGORITHM_BUCKET_SORT_HPP diff --git a/srook/algorithm/sorting/comb_sort.hpp b/srook/algorithm/sorting/comb_sort.hpp index 07f2bee..5ec7a88 100644 --- a/srook/algorithm/sorting/comb_sort.hpp +++ b/srook/algorithm/sorting/comb_sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_COMB_SORT_HPP #define INCLUDED_SROOK_ALGORITHM_COMB_SORT_HPP diff --git a/srook/algorithm/sorting/counting_sort.hpp b/srook/algorithm/sorting/counting_sort.hpp index f280c6e..882fb4a 100644 --- a/srook/algorithm/sorting/counting_sort.hpp +++ b/srook/algorithm/sorting/counting_sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_COUNTING_SORT_HPP #define INCLUDED_SROOK_ALGORITHM_COUNTING_SORT_HPP diff --git a/srook/algorithm/sorting/detail/qsort_helper.hpp b/srook/algorithm/sorting/detail/qsort_helper.hpp index 1449d8c..2498266 100644 --- a/srook/algorithm/sorting/detail/qsort_helper.hpp +++ b/srook/algorithm/sorting/detail/qsort_helper.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SORTING_DETAIL_QSORT_HELPER_HPP #define INCLUDED_SROOK_ALGORITHM_SORTING_DETAIL_QSORT_HELPER_HPP diff --git a/srook/algorithm/sorting/gnome_sort.hpp b/srook/algorithm/sorting/gnome_sort.hpp index 8261d15..58f04db 100644 --- a/srook/algorithm/sorting/gnome_sort.hpp +++ b/srook/algorithm/sorting/gnome_sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_GNOME_SORT_HPP #define INCLUDED_SROOK_ALGORITHM_GNOME_SORT_HPP diff --git a/srook/algorithm/sorting/heap_sort.hpp b/srook/algorithm/sorting/heap_sort.hpp index 21c760c..8c78555 100644 --- a/srook/algorithm/sorting/heap_sort.hpp +++ b/srook/algorithm/sorting/heap_sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_HEAP_SORT_HPP #define INCLUDED_SROOK_ALGORITHM_HEAP_SORT_HPP diff --git a/srook/algorithm/sorting/insertion_sort.hpp b/srook/algorithm/sorting/insertion_sort.hpp index 0800a56..4f63061 100644 --- a/srook/algorithm/sorting/insertion_sort.hpp +++ b/srook/algorithm/sorting/insertion_sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_INSERTION_SORT_HPP #define INCLUDED_SROOK_ALGORITHM_INSERTION_SORT_HPP diff --git a/srook/algorithm/sorting/insertion_sort/binary_search_inserter.hpp b/srook/algorithm/sorting/insertion_sort/binary_search_inserter.hpp index 673ff47..c1c5c13 100644 --- a/srook/algorithm/sorting/insertion_sort/binary_search_inserter.hpp +++ b/srook/algorithm/sorting/insertion_sort/binary_search_inserter.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_INSERTION_SORT_BINARY_SEARCH_INSERT_HPP #define INCLUDED_SROOK_ALGORITHM_INSERTION_SORT_BINARY_SEARCH_INSERT_HPP diff --git a/srook/algorithm/sorting/insertion_sort/insertion_sort.hpp b/srook/algorithm/sorting/insertion_sort/insertion_sort.hpp index 0cb12fe..766cb0b 100644 --- a/srook/algorithm/sorting/insertion_sort/insertion_sort.hpp +++ b/srook/algorithm/sorting/insertion_sort/insertion_sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_INSERTION_SORT_INSERTION_SORT_HPP #define INCLUDED_SROOK_ALGORITHM_INSERTION_SORT_INSERTION_SORT_HPP diff --git a/srook/algorithm/sorting/insertion_sort/linear_search_inserter.hpp b/srook/algorithm/sorting/insertion_sort/linear_search_inserter.hpp index 5de1a40..93e2da0 100644 --- a/srook/algorithm/sorting/insertion_sort/linear_search_inserter.hpp +++ b/srook/algorithm/sorting/insertion_sort/linear_search_inserter.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_INSERTION_SORT_LINEAR_SEARCH_INSERT_HPP #define INCLUDED_SROOK_ALGORITHM_INSERTION_SORT_LINEAR_SEARCH_INSERT_HPP diff --git a/srook/algorithm/sorting/intro_sort.hpp b/srook/algorithm/sorting/intro_sort.hpp index a8eed22..1bf0d60 100644 --- a/srook/algorithm/sorting/intro_sort.hpp +++ b/srook/algorithm/sorting/intro_sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_INTRO_SORT_HPP #define INCLUDED_SROOK_ALGORITHM_INTRO_SORT_HPP diff --git a/srook/algorithm/sorting/merge_sort.hpp b/srook/algorithm/sorting/merge_sort.hpp index 6374a23..2085694 100644 --- a/srook/algorithm/sorting/merge_sort.hpp +++ b/srook/algorithm/sorting/merge_sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_MERGE_SORT_HPP #define INCLUDED_SROOK_ALGORITHM_MERGE_SORT_HPP diff --git a/srook/algorithm/sorting/odd_even_sort.hpp b/srook/algorithm/sorting/odd_even_sort.hpp index 6776b27..255e962 100644 --- a/srook/algorithm/sorting/odd_even_sort.hpp +++ b/srook/algorithm/sorting/odd_even_sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_ODD_EVEN_SORT_HPP #define INCLUDED_SROOK_ALGORITHM_ODD_EVEN_SORT_HPP diff --git a/srook/algorithm/sorting/quick_sort.hpp b/srook/algorithm/sorting/quick_sort.hpp index 474075e..579d5c5 100644 --- a/srook/algorithm/sorting/quick_sort.hpp +++ b/srook/algorithm/sorting/quick_sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_QUICK_SORT_HPP #define INCLUDED_SROOK_ALGORITHM_QUICK_SORT_HPP diff --git a/srook/algorithm/sorting/quick_x_sort.hpp b/srook/algorithm/sorting/quick_x_sort.hpp index 4fece51..bdb689a 100644 --- a/srook/algorithm/sorting/quick_x_sort.hpp +++ b/srook/algorithm/sorting/quick_x_sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_QUICK_X_SORT_HPP #define INCLUDED_SROOK_ALGORITHM_QUICK_X_SORT_HPP diff --git a/srook/algorithm/sorting/selection_sort.hpp b/srook/algorithm/sorting/selection_sort.hpp index bb5056b..eba5868 100644 --- a/srook/algorithm/sorting/selection_sort.hpp +++ b/srook/algorithm/sorting/selection_sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SELECTION_SORT_HPP #define INCLUDED_SROOK_ALGORITHM_SELECTION_SORT_HPP diff --git a/srook/algorithm/sorting/shaker_sort.hpp b/srook/algorithm/sorting/shaker_sort.hpp index 281ba9b..a5ccbd9 100644 --- a/srook/algorithm/sorting/shaker_sort.hpp +++ b/srook/algorithm/sorting/shaker_sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SHAKER_SORT_HPP #define INCLUDED_SROOK_ALGORITHM_SHAKER_SORT_HPP diff --git a/srook/algorithm/sorting/shell_sort.hpp b/srook/algorithm/sorting/shell_sort.hpp index 65a2c2f..fd6a8a8 100644 --- a/srook/algorithm/sorting/shell_sort.hpp +++ b/srook/algorithm/sorting/shell_sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ALGORITHM_SHELL_SORT_HPP #define INCLUDED_SROOK_ALGORITHM_SHELL_SORT_HPP diff --git a/srook/algorithm/transform.hpp b/srook/algorithm/transform.hpp index bcb0d5c..e55d0de 100644 --- a/srook/algorithm/transform.hpp +++ b/srook/algorithm/transform.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_ALGORITHM_TRANSFORM_HPP #define INCLUDED_ALGORITHM_TRANSFORM_HPP diff --git a/srook/any.hpp b/srook/any.hpp index 40aadb8..f3d3247 100644 --- a/srook/any.hpp +++ b/srook/any.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ANY_HPP #define INCLUDED_SROOK_ANY_HPP diff --git a/srook/array.hpp b/srook/array.hpp index d84b406..6bd758e 100644 --- a/srook/array.hpp +++ b/srook/array.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ARRAY_HPP #define INCLUDED_SROOK_ARRAY_HPP diff --git a/srook/array/array.hpp b/srook/array/array.hpp index 831ff54..85ca402 100644 --- a/srook/array/array.hpp +++ b/srook/array/array.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ARRAY_ARRAY_HPP #define INCLUDED_SROOK_ARRAY_ARRAY_HPP diff --git a/srook/array/array_traits.hpp b/srook/array/array_traits.hpp index 26c430c..57fc0e5 100644 --- a/srook/array/array_traits.hpp +++ b/srook/array/array_traits.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ARRAY_ARRAY_TRAITS_HPP #define INCLUDED_SROOK_ARRAY_ARRAY_TRAITS_HPP diff --git a/srook/array/deprecated/array.hpp b/srook/array/deprecated/array.hpp index 83be01a..58dde5e 100644 --- a/srook/array/deprecated/array.hpp +++ b/srook/array/deprecated/array.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_ALL_SAME_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_ALL_SAME_HPP #include diff --git a/srook/bit.hpp b/srook/bit.hpp index 7258326..8515589 100644 --- a/srook/bit.hpp +++ b/srook/bit.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_BIT_HPP #define INCLUDED_SROOK_BIT_HPP diff --git a/srook/bit/algorithm.hpp b/srook/bit/algorithm.hpp index 2ad9ce0..6d6b6e9 100644 --- a/srook/bit/algorithm.hpp +++ b/srook/bit/algorithm.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_BIT_ALGORITHM_HPP #define INCLUDED_SROOK_BIT_ALGORITHM_HPP diff --git a/srook/bit/algorithm/ffs.hpp b/srook/bit/algorithm/ffs.hpp index f10933d..94db961 100644 --- a/srook/bit/algorithm/ffs.hpp +++ b/srook/bit/algorithm/ffs.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_BIT_FFS_HPP #define INCLUDED_SROOK_BIT_FFS_HPP diff --git a/srook/bit/algorithm/hamming.hpp b/srook/bit/algorithm/hamming.hpp index d4ec0fd..39e849e 100644 --- a/srook/bit/algorithm/hamming.hpp +++ b/srook/bit/algorithm/hamming.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_BIT_HAMMING_HPP #define INCLUDED_SROOK_BIT_HAMMING_HPP diff --git a/srook/bit/algorithm/msb.hpp b/srook/bit/algorithm/msb.hpp index a94e41b..91c0f71 100644 --- a/srook/bit/algorithm/msb.hpp +++ b/srook/bit/algorithm/msb.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_BIT_ALGORITHM_MOST_SINGNIFICANT_BIT_HPP #define INCLUDED_SROOK_BIT_ALGORITHM_MOST_SINGNIFICANT_BIT_HPP diff --git a/srook/bit/algorithm/next_permutation.hpp b/srook/bit/algorithm/next_permutation.hpp index ae0f4c3..7c976c6 100644 --- a/srook/bit/algorithm/next_permutation.hpp +++ b/srook/bit/algorithm/next_permutation.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_BIT_ALGORITHM_NEXT_PERMUTATION_HPP #define INCLUDED_SROOK_BIT_ALGORITHM_NEXT_PERMUTATION_HPP diff --git a/srook/bit/algorithm/nlz.hpp b/srook/bit/algorithm/nlz.hpp index a7230da..4bcdcb2 100644 --- a/srook/bit/algorithm/nlz.hpp +++ b/srook/bit/algorithm/nlz.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_BIT_ALGORITHM_NUMBER_OF_LEADING_ZERO_HPP #define INCLUDED_SROOK_BIT_ALGORITHM_NUMBER_OF_LEADING_ZERO_HPP diff --git a/srook/bit/algorithm/ntz.hpp b/srook/bit/algorithm/ntz.hpp index 1d17cb9..f1e131b 100644 --- a/srook/bit/algorithm/ntz.hpp +++ b/srook/bit/algorithm/ntz.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_BIT_COUNT_TRAILING_ZEROS_HPP #define INCLUDED_SROOK_BIT_COUNT_TRAILING_ZEROS_HPP diff --git a/srook/bit/algorithm/popcnt.hpp b/srook/bit/algorithm/popcnt.hpp index f557c1b..f9b1249 100644 --- a/srook/bit/algorithm/popcnt.hpp +++ b/srook/bit/algorithm/popcnt.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_BIT_POP_COUNT_HPP #define INCLUDED_SROOK_BIT_POP_COUNT_HPP diff --git a/srook/bit/algorithm/reverse.hpp b/srook/bit/algorithm/reverse.hpp index 7ce1fc4..dfb5af1 100644 --- a/srook/bit/algorithm/reverse.hpp +++ b/srook/bit/algorithm/reverse.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_BIT_ALGORITHM_REVERSE_HPP #define INCLUDED_SROOK_BIT_ALGORITHM_REVERSE_HPP diff --git a/srook/bit/bit_cast.hpp b/srook/bit/bit_cast.hpp index 1f19162..22129c6 100644 --- a/srook/bit/bit_cast.hpp +++ b/srook/bit/bit_cast.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_BIT_BIT_CAST_HPP #define INCLUDED_SROOK_BIT_BIT_CAST_HPP diff --git a/srook/brainfk/brainfk.hpp b/srook/brainfk/brainfk.hpp index d3358f1..17f7b92 100644 --- a/srook/brainfk/brainfk.hpp +++ b/srook/brainfk/brainfk.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_BRAINFXXK_INTERPINTER_HPP #define INCLUDED_SROOK_BRAINFXXK_INTERPINTER_HPP #include diff --git a/srook/brainfk/llvm/brainfk_compiler.hpp b/srook/brainfk/llvm/brainfk_compiler.hpp index 216d2ee..8b1b573 100644 --- a/srook/brainfk/llvm/brainfk_compiler.hpp +++ b/srook/brainfk/llvm/brainfk_compiler.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_BRAINFXXK_LLVM_COMPILER_HPP #define INCLUDED_SROOK_BRAINFXXK_LLVM_COMPILER_HPP diff --git a/srook/cfenv.hpp b/srook/cfenv.hpp index 847ce12..093fb6a 100644 --- a/srook/cfenv.hpp +++ b/srook/cfenv.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CFENV_HPP #define INCLUDED_SROOK_CFENV_HPP diff --git a/srook/cfenv/config.hpp b/srook/cfenv/config.hpp index 9e17500..9f1565d 100644 --- a/srook/cfenv/config.hpp +++ b/srook/cfenv/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CFENV_CONFIG_HPP #define INCLUDED_SROOK_CFENV_CONFIG_HPP diff --git a/srook/cfenv/disable_nan.hpp b/srook/cfenv/disable_nan.hpp index 6804c75..608f1df 100644 --- a/srook/cfenv/disable_nan.hpp +++ b/srook/cfenv/disable_nan.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CFENV_DISABLE_NAN_HPP #define INCLUDED_SROOK_CFENV_DISABLE_NAN_HPP diff --git a/srook/cfenv/round_switch.hpp b/srook/cfenv/round_switch.hpp index c069cee..2b63634 100644 --- a/srook/cfenv/round_switch.hpp +++ b/srook/cfenv/round_switch.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CFENV_ROUND_SWITCH_HPP #define INCLUDED_SROOK_CFENV_ROUND_SWITCH_HPP diff --git a/srook/chrono.hpp b/srook/chrono.hpp index 614904e..59df209 100644 --- a/srook/chrono.hpp +++ b/srook/chrono.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CHRONO_HPP #define INCLUDED_SROOK_CHRONO_HPP #include diff --git a/srook/chrono/ceil.hpp b/srook/chrono/ceil.hpp index 6f7cdf0..16c875a 100644 --- a/srook/chrono/ceil.hpp +++ b/srook/chrono/ceil.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CHRONO_CEIL_HPP #define INCLUDED_SROOK_CHRONO_CEIL_HPP diff --git a/srook/chrono/clock.hpp b/srook/chrono/clock.hpp index d8ccbcc..4ab0f16 100644 --- a/srook/chrono/clock.hpp +++ b/srook/chrono/clock.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CHRONO_CLOCK_HPP #define INCLUDED_SROOK_CHRONO_CLOCK_HPP diff --git a/srook/chrono/clock/rdtscp_clock.hpp b/srook/chrono/clock/rdtscp_clock.hpp index 185a9e7..f4abeea 100644 --- a/srook/chrono/clock/rdtscp_clock.hpp +++ b/srook/chrono/clock/rdtscp_clock.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CHRONO_CLOCK_RDTSCP_CLOCK_HPP #define INCLUDED_SROOK_CHRONO_CLOCK_RDTSCP_CLOCK_HPP diff --git a/srook/chrono/intrinsic.hpp b/srook/chrono/intrinsic.hpp index 37f0f40..8b402fe 100644 --- a/srook/chrono/intrinsic.hpp +++ b/srook/chrono/intrinsic.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CHRONO_INTRINSIC_HPP #define INCLUDED_SROOK_CHRONO_INTRINCIS_HPP diff --git a/srook/chrono/intrinsic/rdtsc.hpp b/srook/chrono/intrinsic/rdtsc.hpp index 87f6373..ca736ae 100644 --- a/srook/chrono/intrinsic/rdtsc.hpp +++ b/srook/chrono/intrinsic/rdtsc.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CHRONO_RDTSC_HPP #define INCLUDED_SROOK_CHRONO_RDTSC_HPP diff --git a/srook/compare.hpp b/srook/compare.hpp index 6058dc9..9106110 100644 --- a/srook/compare.hpp +++ b/srook/compare.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_COMPARE_HPP #define INCLUDED_SROOK_COMPARE_HPP diff --git a/srook/compare/categories.hpp b/srook/compare/categories.hpp index 936df0a..6cf266d 100644 --- a/srook/compare/categories.hpp +++ b/srook/compare/categories.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_COMPARE_CATEGORIES_HPP #define INCLUDED_SROOK_COMPARE_CATEGORIES_HPP diff --git a/srook/compare/categories/exposition_values.hpp b/srook/compare/categories/exposition_values.hpp index c459617..1436a59 100644 --- a/srook/compare/categories/exposition_values.hpp +++ b/srook/compare/categories/exposition_values.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_COMPARISON_CATEGORIES_EXPOSITION_VALUES_HPP #define INCLUDED_SROOK_COMPARISON_CATEGORIES_EXPOSITION_VALUES_HPP diff --git a/srook/compare/categories/partial_ordering.hpp b/srook/compare/categories/partial_ordering.hpp index a65c8af..1006834 100644 --- a/srook/compare/categories/partial_ordering.hpp +++ b/srook/compare/categories/partial_ordering.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_COMPARE_CATEGORIES_PARTIAL_ORDERING_HPP #define INCLUDED_SROOK_COMPARE_CATEGORIES_PARTIAL_ORDERING_HPP diff --git a/srook/compare/categories/strong_equality.hpp b/srook/compare/categories/strong_equality.hpp index 302f89b..690411a 100644 --- a/srook/compare/categories/strong_equality.hpp +++ b/srook/compare/categories/strong_equality.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_COMPARE_CATEGORIES_STRONG_EQUALITY_HPP #define INCLUDED_SROOK_COMPARE_CATEGORIES_STRONG_EQUALITY_HPP diff --git a/srook/compare/categories/strong_ordering.hpp b/srook/compare/categories/strong_ordering.hpp index 6a020d1..a0dee22 100644 --- a/srook/compare/categories/strong_ordering.hpp +++ b/srook/compare/categories/strong_ordering.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_COMPARE_CATEGORIES_STRONG_ORDERING_HPP #define INCLUDED_SROOK_COMPARE_CATEGORIES_STRONG_ORDERING_HPP diff --git a/srook/compare/categories/weak_equality.hpp b/srook/compare/categories/weak_equality.hpp index 15c1d33..341ba8c 100644 --- a/srook/compare/categories/weak_equality.hpp +++ b/srook/compare/categories/weak_equality.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_COMPARE_CATEGORIES_WEAK_EQUALITY_HPP #define INCLUDED_SROOK_COMPARE_CATEGORIES_WEAK_EQUALITY_HPP diff --git a/srook/compare/categories/weak_ordering.hpp b/srook/compare/categories/weak_ordering.hpp index de7f030..6ab7180 100644 --- a/srook/compare/categories/weak_ordering.hpp +++ b/srook/compare/categories/weak_ordering.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_COMPARE_CATEGORIES_WEAK_ORDERING_HPP #define INCLUDED_SROOK_COMPARE_CATEGORIES_WEAK_ORDERING_HPP diff --git a/srook/compare/comparison_functions.hpp b/srook/compare/comparison_functions.hpp index a616f59..9c41651 100644 --- a/srook/compare/comparison_functions.hpp +++ b/srook/compare/comparison_functions.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_COMPARE_COMPARISON_FUNCTIONS_HPP #define INCLUDED_SROOK_COMPARE_COMPARISON_FUNCTIONS_HPP diff --git a/srook/condition_variable.hpp b/srook/condition_variable.hpp index 0c636b5..2bc2628 100644 --- a/srook/condition_variable.hpp +++ b/srook/condition_variable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONDITION_VARIABLE_HPP #define INCLUDED_SROOK_CONDITION_VARIABLE_HPP diff --git a/srook/condition_variable/cv.hpp b/srook/condition_variable/cv.hpp index 6d0387c..3569403 100644 --- a/srook/condition_variable/cv.hpp +++ b/srook/condition_variable/cv.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_CV_CONDITION_VARIABLE_HPP #define INCLUDED_SROOK_MUTEX_CV_CONDITION_VARIABLE_HPP #include diff --git a/srook/condition_variable/detail/cv_detail.hpp b/srook/condition_variable/detail/cv_detail.hpp index 379cb2e..cc9179d 100644 --- a/srook/condition_variable/detail/cv_detail.hpp +++ b/srook/condition_variable/detail/cv_detail.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONDITION_VARIABLE_DETAIL_CV_DETAIL_HPP #define INCLUDED_SROOK_CONDITION_VARIABLE_DETAIL_CV_DETAIL_HPP diff --git a/srook/config.hpp b/srook/config.hpp index 070120c..9254bc0 100644 --- a/srook/config.hpp +++ b/srook/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_HPP #define INCLUDED_SROOK_CONFIG_HPP diff --git a/srook/config/abi/core.hpp b/srook/config/abi/core.hpp index 65e9857..1ea9466 100644 --- a/srook/config/abi/core.hpp +++ b/srook/config/abi/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ABI_CORE_HPP #define INCLUDED_SROOK_CONFIG_ABI_CORE_HPP diff --git a/srook/config/arch.hpp b/srook/config/arch.hpp index 3f1c256..d8de35c 100644 --- a/srook/config/arch.hpp +++ b/srook/config/arch.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License. +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License. #ifndef INCLUDED_SROOK_CONFIG_ARCH_HPP #define INCLUDED_SROOK_CONFIG_ARCH_HPP #include diff --git a/srook/config/arch/AMD64.hpp b/srook/config/arch/AMD64.hpp index 2f41d91..048ce9f 100644 --- a/srook/config/arch/AMD64.hpp +++ b/srook/config/arch/AMD64.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [Intel IA-64 architecture](http://en.wikipedia.org/wiki/Ia64). #ifndef INCLUDED_SROOK_CONFIG_ARCH_AMD64_HPP #define INCLUDED_SROOK_CONFIG_ARCH_AMD64_HPP diff --git a/srook/config/arch/AMD64/core.hpp b/srook/config/arch/AMD64/core.hpp index 9137845..6f95d02 100644 --- a/srook/config/arch/AMD64/core.hpp +++ b/srook/config/arch/AMD64/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_AMD64_CORE_HPP #define INCLUDED_SROOK_CONFIG_ARCH_AMD64_CORE_HPP #if defined(__amd64__) || defined(__amd64) || defined(__x86_64__) || defined(__x86_64) || defined(_M_X64) || defined(_M_AMD64) diff --git a/srook/config/arch/ARM.hpp b/srook/config/arch/ARM.hpp index da047a6..87f8915 100644 --- a/srook/config/arch/ARM.hpp +++ b/srook/config/arch/ARM.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [ARM architecture](http://en.wikipedia.org/wiki/ARM_architecture). #ifndef INCLUDED_SROOK_CONFIG_ARCH_ARM_HPP diff --git a/srook/config/arch/ARM/arm64.hpp b/srook/config/arch/ARM/arm64.hpp index 626927c..1dfcfa2 100644 --- a/srook/config/arch/ARM/arm64.hpp +++ b/srook/config/arch/ARM/arm64.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Reference: http://infocenter.arm.com/help/topic/com.arm.doc.dui0376d/DUI0376D_compiler_reference.pdf #ifndef INCLUDED_SROOK_CONFIG_ARCH_ARM_ARM64_HPP diff --git a/srook/config/arch/ARM/core.hpp b/srook/config/arch/ARM/core.hpp index 6fe804b..70785c7 100644 --- a/srook/config/arch/ARM/core.hpp +++ b/srook/config/arch/ARM/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Reference: http://infocenter.arm.com/help/topic/com.arm.doc.dui0376d/DUI0376D_compiler_reference.pdf #include diff --git a/srook/config/arch/ARM/version.hpp b/srook/config/arch/ARM/version.hpp index 4f682aa..c898587 100644 --- a/srook/config/arch/ARM/version.hpp +++ b/srook/config/arch/ARM/version.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Reference: http://infocenter.arm.com/help/topic/com.arm.doc.dui0376d/DUI0376D_compiler_reference.pdf #ifndef INCLUDED_SROOK_CONFIG_ARCH_ARM_VERSION_HPP #define INCLUDED_SROOK_CONFIG_ARCH_ARM_VERSION_HPP diff --git a/srook/config/arch/AVR.hpp b/srook/config/arch/AVR.hpp index 845a05c..8b8a1b6 100644 --- a/srook/config/arch/AVR.hpp +++ b/srook/config/arch/AVR.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [Atmel AVR architecture](https://en.wikipedia.org/wiki/Atmel_AVR). #ifndef INCLUDED_SROOK_CONFIG_ARCH_AVR_HPP #define INCLUDED_SROOK_CONFIG_ARCH_AVR_HPP diff --git a/srook/config/arch/AVR/core.hpp b/srook/config/arch/AVR/core.hpp index 090722e..b574789 100644 --- a/srook/config/arch/AVR/core.hpp +++ b/srook/config/arch/AVR/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_AVR_CORE_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_AVR_CORE_HPP diff --git a/srook/config/arch/Blackfin.hpp b/srook/config/arch/Blackfin.hpp index 5089b5d..c98f02f 100644 --- a/srook/config/arch/Blackfin.hpp +++ b/srook/config/arch/Blackfin.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [Blackfin Processors from Analog Devices](https://en.wikipedia.org/wiki/Blackfin) #ifndef INLCUDED_SROOK_CONFIG_ARCH_BLACKFIN_HPP #define INLCUDED_SROOK_CONFIG_ARCH_BLACKFIN_HPP diff --git a/srook/config/arch/Blackfin/core.hpp b/srook/config/arch/Blackfin/core.hpp index 87ef5af..ca0b9ac 100644 --- a/srook/config/arch/Blackfin/core.hpp +++ b/srook/config/arch/Blackfin/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_BLACKFIN_HPP #define INCLUDED_SROOK_CONFIG_ARCH_BLACKFIN_HPP diff --git a/srook/config/arch/Convex.hpp b/srook/config/arch/Convex.hpp index 0583fef..665ee1c 100644 --- a/srook/config/arch/Convex.hpp +++ b/srook/config/arch/Convex.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [Convex Computer architecture](http://en.wikipedia.org/wiki/Convex_Computer). #ifndef INCLUDED_SROOK_CONFIG_ARCH_CONVEX_HPP diff --git a/srook/config/arch/Convex/core.hpp b/srook/config/arch/Convex/core.hpp index cbc1a85..f1c21d9 100644 --- a/srook/config/arch/Convex/core.hpp +++ b/srook/config/arch/Convex/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_CONVEX_CORE_HPP #define INCLUDED_SROOK_CONFIG_ARCH_CONVEX_CORE_HPP diff --git a/srook/config/arch/Convex/version.hpp b/srook/config/arch/Convex/version.hpp index be30863..d1c5392 100644 --- a/srook/config/arch/Convex/version.hpp +++ b/srook/config/arch/Convex/version.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_CONVEX_VERSION_HPP #define INCLUDED_SROOK_CONFIG_ARCH_CONVEX_VERSION_HPP #include diff --git a/srook/config/arch/DECAlpha.hpp b/srook/config/arch/DECAlpha.hpp index db7d946..b3bbbe1 100644 --- a/srook/config/arch/DECAlpha.hpp +++ b/srook/config/arch/DECAlpha.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macros of [DEC Alpha architecture](https://en.wikipedia.org/wiki/DEC_Alpha). #ifndef INLCUDED_SROOK_CONFIG_ARCH_DECALPHA_HPP #define INLCUDED_SROOK_CONFIG_ARCH_DECALPHA_HPP diff --git a/srook/config/arch/DECAlpha/core.hpp b/srook/config/arch/DECAlpha/core.hpp index 81c6435..791252a 100644 --- a/srook/config/arch/DECAlpha/core.hpp +++ b/srook/config/arch/DECAlpha/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_DECALPHA_CORE_HPP #define INCLUDED_SROOK_CONFIG_ARCH_DECALPHA_CORE_HPP diff --git a/srook/config/arch/DECAlpha/version.hpp b/srook/config/arch/DECAlpha/version.hpp index e80bd45..62492ba 100644 --- a/srook/config/arch/DECAlpha/version.hpp +++ b/srook/config/arch/DECAlpha/version.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_DECALPHA_HPP #define INCLUDED_SROOK_CONFIG_ARCH_DECALPHA_HPP #include diff --git a/srook/config/arch/IA64.hpp b/srook/config/arch/IA64.hpp index 2ea18cd..2b79482 100644 --- a/srook/config/arch/IA64.hpp +++ b/srook/config/arch/IA64.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [Intel Itanium 64 architecture](https://en.wikipedia.org/wiki/IA-64). #ifndef INCLUDED_SROOK_CONFIG_ARCH_IA64_HPP #define INCLUDED_SROOK_CONFIG_ARCH_IA64_HPP diff --git a/srook/config/arch/IA64/core.hpp b/srook/config/arch/IA64/core.hpp index ca2cd8d..3f096d2 100644 --- a/srook/config/arch/IA64/core.hpp +++ b/srook/config/arch/IA64/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_IA64_CORE_HPP #define INCLUDED_SROOK_CONFIG_ARCH_IA64_CORE_HPP diff --git a/srook/config/arch/M68K.hpp b/srook/config/arch/M68K.hpp index b05ee66..8fe9927 100644 --- a/srook/config/arch/M68K.hpp +++ b/srook/config/arch/M68K.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [Motorola 68k architecture](https://en.wikipedia.org/wiki/Motorola_68000_series). #ifndef INCLUDED_SROOK_CONFIG_ARCH_M68K_HPP #define INCLUDED_SROOK_CONFIG_ARCH_M68K_HPP diff --git a/srook/config/arch/M68K/core.hpp b/srook/config/arch/M68K/core.hpp index c385cbc..3b99783 100644 --- a/srook/config/arch/M68K/core.hpp +++ b/srook/config/arch/M68K/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_M68K_CORE_HPP #define INCLUDED_SROOK_CONFIG_ARCH_M68K_CORE_HPP diff --git a/srook/config/arch/M68K/version.hpp b/srook/config/arch/M68K/version.hpp index ba9e0be..e5fbd48 100644 --- a/srook/config/arch/M68K/version.hpp +++ b/srook/config/arch/M68K/version.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_M68K_VERSION_HPP #define INCLUDED_SROOK_CONFIG_ARCH_M68K_VERSION_HPP #include diff --git a/srook/config/arch/MIPS.hpp b/srook/config/arch/MIPS.hpp index e34a186..c90f601 100644 --- a/srook/config/arch/MIPS.hpp +++ b/srook/config/arch/MIPS.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [MIPS architecture](http://en.wikipedia.org/wiki/MIPS_architecture). #ifndef INCLUDED_SROOK_CONFIG_ARCH_MIPS_HPP #define INCLUDED_SROOK_CONFIG_ARCH_MIPS_HPP diff --git a/srook/config/arch/MIPS/core.hpp b/srook/config/arch/MIPS/core.hpp index 2cb6d2f..21c3816 100644 --- a/srook/config/arch/MIPS/core.hpp +++ b/srook/config/arch/MIPS/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_MIPS_CORE_HPP #define INCLUDED_SROOK_CONFIG_ARCH_MIPS_CORE_HPP diff --git a/srook/config/arch/PARISC.hpp b/srook/config/arch/PARISC.hpp index 5724cdb..e4e62ff 100644 --- a/srook/config/arch/PARISC.hpp +++ b/srook/config/arch/PARISC.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [HP/PA RISC architecture](http://en.wikipedia.org/wiki/PA-RISC_family). #ifndef INCLUDED_SROOK_CONFIG_ARCH_PARISC_HPP #define INCLUDED_SROOK_CONFIG_ARCH_PARISC_HPP diff --git a/srook/config/arch/PARISC/core.hpp b/srook/config/arch/PARISC/core.hpp index 7371ee8..16e9f06 100644 --- a/srook/config/arch/PARISC/core.hpp +++ b/srook/config/arch/PARISC/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_PARISC_CORE_HPP #define INCLUDED_SROOK_CONFIG_ARCH_PARISC_CORE_HPP #if defined(__hppa__) || defined(__hppa) || defined(__HPPA__) diff --git a/srook/config/arch/PARISC/version.hpp b/srook/config/arch/PARISC/version.hpp index 4691795..237eede 100644 --- a/srook/config/arch/PARISC/version.hpp +++ b/srook/config/arch/PARISC/version.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_PARISC_VERSION_HPP #define INCLUDED_SROOK_CONFIG_ARCH_PARISC_VERSION_HPP #include diff --git a/srook/config/arch/PPC.hpp b/srook/config/arch/PPC.hpp index 546e641..ffa3209 100644 --- a/srook/config/arch/PPC.hpp +++ b/srook/config/arch/PPC.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [PowerPC architecture](http://en.wikipedia.org/wiki/PowerPC). #ifndef INCLUDED_SROOK_CONFIG_ARCH_PPC_HPP #define INCLUDED_SROOK_CONFIG_ARCH_PPC_HPP diff --git a/srook/config/arch/PPC/core.hpp b/srook/config/arch/PPC/core.hpp index f5dc57a..70eedd7 100644 --- a/srook/config/arch/PPC/core.hpp +++ b/srook/config/arch/PPC/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_PPC_CORE_HPP #define INCLUDED_SROOK_CONFIG_PPC_CORE_HPP #if defined(__powerpc) ||\ diff --git a/srook/config/arch/PPC/version.hpp b/srook/config/arch/PPC/version.hpp index ea7f49b..01c2e3f 100644 --- a/srook/config/arch/PPC/version.hpp +++ b/srook/config/arch/PPC/version.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_PPC_VERSION_HPP #define INCLUDED_SROOK_CONFIG_PPC_VERSION_HPP #include diff --git a/srook/config/arch/Pyramid.hpp b/srook/config/arch/Pyramid.hpp index 5b9c4f2..555e20b 100644 --- a/srook/config/arch/Pyramid.hpp +++ b/srook/config/arch/Pyramid.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of Pyramid 9810 architecture. #ifndef INCLUDED_SROOK_CONFIG_ARCH_PYRAMID_HPP #define INCLUDED_SROOK_CONFIG_ARCH_PYRAMID_HPP diff --git a/srook/config/arch/Pyramid/core.hpp b/srook/config/arch/Pyramid/core.hpp index 28005b8..90189a4 100644 --- a/srook/config/arch/Pyramid/core.hpp +++ b/srook/config/arch/Pyramid/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_PYRAMID_CORE_HPP #define INCLUDED_SROOK_CONFIG_ARCH_PYRAMID_CORE_HPP #if defined(pyr) diff --git a/srook/config/arch/RS6000.hpp b/srook/config/arch/RS6000.hpp index c3b5df0..b68b1ae 100644 --- a/srook/config/arch/RS6000.hpp +++ b/srook/config/arch/RS6000.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [RS/6000 architecture](RS/6000). #ifndef INCLUDED_SROOK_CONFIG_ARCH_RS6000_HPP #define INCLUDED_SROOK_CONFIG_ARCH_RS6000_HPP diff --git a/srook/config/arch/RS6000/core.hpp b/srook/config/arch/RS6000/core.hpp index 6921d71..2d99e12 100644 --- a/srook/config/arch/RS6000/core.hpp +++ b/srook/config/arch/RS6000/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_RS6000_CORE_HPP #define INCLUDED_SROOK_CONFIG_ARCH_RS6000_CORE_HPP diff --git a/srook/config/arch/SPARC.hpp b/srook/config/arch/SPARC.hpp index bb34d36..3279cad 100644 --- a/srook/config/arch/SPARC.hpp +++ b/srook/config/arch/SPARC.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [SPARC architecture](http://en.wikipedia.org/wiki/SPARC). #ifndef INCLUDED_SROOK_CONFIG_ARCH_SPARC_HPP #define INCLUDED_SROOK_CONFIG_ARCH_SPARC_HPP diff --git a/srook/config/arch/SPARC/core.hpp b/srook/config/arch/SPARC/core.hpp index bd972f9..8f6a260 100644 --- a/srook/config/arch/SPARC/core.hpp +++ b/srook/config/arch/SPARC/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_SPARC_CORE_HPP #define INCLUDED_SROOK_CONFIG_ARCH_SPARC_CORE_HPP #if defined(__sparc__) || defined(__sparc) || defined(__sparc64__) diff --git a/srook/config/arch/SPARC/version.hpp b/srook/config/arch/SPARC/version.hpp index c742894..5dcf260 100644 --- a/srook/config/arch/SPARC/version.hpp +++ b/srook/config/arch/SPARC/version.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_SPARC_VERSION_HPP #define INCLUDED_SROOK_CONFIG_ARCH_SPARC_VERSION_HPP #if SROOK_ARCH_IS_SPARC diff --git a/srook/config/arch/SuperH.hpp b/srook/config/arch/SuperH.hpp index 4afa470..92c8b6b 100644 --- a/srook/config/arch/SuperH.hpp +++ b/srook/config/arch/SuperH.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [SuperH architecture](http://en.wikipedia.org/wiki/SuperH) #ifndef INCLUDED_SROOK_CONFIG_ARCH_SUPERH_HPP #define INCLUDED_SROOK_CONFIG_ARCH_SUPERH_HPP diff --git a/srook/config/arch/SuperH/core.hpp b/srook/config/arch/SuperH/core.hpp index 37b8175..34653ce 100644 --- a/srook/config/arch/SuperH/core.hpp +++ b/srook/config/arch/SuperH/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_SUPERH_CORE_HPP #define INCLUDED_SROOK_CONFIG_ARCH_SUPERH_CORE_HPP diff --git a/srook/config/arch/SuperH/version.hpp b/srook/config/arch/SuperH/version.hpp index 1d5dc35..eeca1d7 100644 --- a/srook/config/arch/SuperH/version.hpp +++ b/srook/config/arch/SuperH/version.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_SUPERH_VERSION_HPP #define INCLUDED_SROOK_CONFIG_ARCH_SUPERH_VERSION_HPP diff --git a/srook/config/arch/System370.hpp b/srook/config/arch/System370.hpp index f54a0c6..ecf8178 100644 --- a/srook/config/arch/System370.hpp +++ b/srook/config/arch/System370.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [System/370 architecture](http://en.wikipedia.org/wiki/System/370). #ifndef INCLUDED_SROOK_CONFIG_ARCH_SYSTEM370_HPP #define INCLUDED_SROOK_CONFIG_ARCH_SYSTEM370_HPP diff --git a/srook/config/arch/System370/core.hpp b/srook/config/arch/System370/core.hpp index 9c06138..39f258b 100644 --- a/srook/config/arch/System370/core.hpp +++ b/srook/config/arch/System370/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_SYSTEM370_CORE_HPP #define INCLUDED_SROOK_CONFIG_SYSTEM370_CORE_HPP #if defined(__370__) || defined(__THW_370__) diff --git a/srook/config/arch/System390.hpp b/srook/config/arch/System390.hpp index d4025d1..6299d9c 100644 --- a/srook/config/arch/System390.hpp +++ b/srook/config/arch/System390.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [System/370 architecture](http://en.wikipedia.org/wiki/System/390). #ifndef INCLUDED_SROOK_CONFIG_ARCH_SYSTEM390_HPP #define INCLUDED_SROOK_CONFIG_ARCH_SYSTEM390_HPP diff --git a/srook/config/arch/System390/core.hpp b/srook/config/arch/System390/core.hpp index b07bc32..4308fdb 100644 --- a/srook/config/arch/System390/core.hpp +++ b/srook/config/arch/System390/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_SYSTEM390_CORE_HPP #define INCLUDED_SROOK_CONFIG_SYSTEM390_CORE_HPP #if defined(__s390__) || defined(__s390x__) diff --git a/srook/config/arch/TMS.hpp b/srook/config/arch/TMS.hpp index d58e5ef..f6a6156 100644 --- a/srook/config/arch/TMS.hpp +++ b/srook/config/arch/TMS.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [Texas Instruments TMS320](https://en.wikipedia.org/wiki/Texas_Instruments_TMS320) and // [Texas Instruments TMS470](https://en.wikipedia.org/wiki/Hercules_(processors)). #ifndef INCLUDED_SROOK_CONFIG_ARCH_MIPS_HPP diff --git a/srook/config/arch/TMS/320.hpp b/srook/config/arch/TMS/320.hpp index 16f40bb..3cb331e 100644 --- a/srook/config/arch/TMS/320.hpp +++ b/srook/config/arch/TMS/320.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [Texas Instruments TMS320](https://en.wikipedia.org/wiki/Texas_Instruments_TMS320). #ifndef INCLUDED_SROOK_CONFIG_ARCH_TMS_320_HPP #define INCLUDED_SROOK_CONFIG_ARCH_TMS_320_HPP diff --git a/srook/config/arch/TMS/320/core.hpp b/srook/config/arch/TMS/320/core.hpp index 092a3e2..35d0757 100644 --- a/srook/config/arch/TMS/320/core.hpp +++ b/srook/config/arch/TMS/320/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_TMS_320_HPP #define INCLUDED_SROOK_CONFIG_ARCH_TMS_320_HPP #if defined(_TMS320C2XX) || defined(__TMS320C2000__) || defined(_TMS320C5X) || defined(__TMS320C55X__) || defined(_TMS320C6X) || defined(__TMS320C6X__) diff --git a/srook/config/arch/TMS/470.hpp b/srook/config/arch/TMS/470.hpp index 95aec46..5d1f804 100644 --- a/srook/config/arch/TMS/470.hpp +++ b/srook/config/arch/TMS/470.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [Texas Instruments TMS470](https://en.wikipedia.org/wiki/Hercules_(processors)). #ifndef INCLUDED_SROOK_CONFIG_ARCH_TMS_470_HPP #define INCLUDED_SROOK_CONFIG_ARCH_TMS_470_HPP diff --git a/srook/config/arch/TMS/470/core.hpp b/srook/config/arch/TMS/470/core.hpp index c554441..8d4b7ee 100644 --- a/srook/config/arch/TMS/470/core.hpp +++ b/srook/config/arch/TMS/470/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_TMS_470_HPP #define INCLUDED_SROOK_CONFIG_ARCH_TMS_470_HPP #if defined(__TMS470__) diff --git a/srook/config/arch/ZArchitecture.hpp b/srook/config/arch/ZArchitecture.hpp index db0b917..d9fadc2 100644 --- a/srook/config/arch/ZArchitecture.hpp +++ b/srook/config/arch/ZArchitecture.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [Z/Architecture](http://en.wikipedia.org/wiki/Z/Architecture). #ifndef INCLUDED_SROOK_CONFIG_ARCH_Z_ARCHITECTURE_HPP #define INCLUDED_SROOK_CONFIG_ARCH_Z_ARCHITECTURE_HPP diff --git a/srook/config/arch/ZArchitecture/core.hpp b/srook/config/arch/ZArchitecture/core.hpp index 133fc0b..be94139 100644 --- a/srook/config/arch/ZArchitecture/core.hpp +++ b/srook/config/arch/ZArchitecture/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_Z_ARCHITECTURE_CORE_HPP #define INCLUDED_SROOK_CONFIG_Z_ARCHITECTURE_CORE_HPP #if defined(__SYSC_ZARCH__) diff --git a/srook/config/arch/x86.hpp b/srook/config/arch/x86.hpp index e7aefd6..5aa29a8 100644 --- a/srook/config/arch/x86.hpp +++ b/srook/config/arch/x86.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [Intel x86 architecture](http://en.wikipedia.org/wiki/X86) and [Intel IA-64 architecture](http://en.wikipedia.org/wiki/Ia64). #ifndef INCLUDED_SROOK_CONFIG_ARCH_x86_HPP #define INCLUDED_SROOK_CONFIG_ARCH_x86_HPP diff --git a/srook/config/arch/x86/32.hpp b/srook/config/arch/x86/32.hpp index 481c780..f552591 100644 --- a/srook/config/arch/x86/32.hpp +++ b/srook/config/arch/x86/32.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [Intel x86 architecture](http://en.wikipedia.org/wiki/X86). #ifndef INCLUDED_SROOK_CONFIG_ARCH_x86_32_HPP #define INCLUDED_SROOK_CONFIG_ARCH_x86_32_HPP diff --git a/srook/config/arch/x86/32/core.hpp b/srook/config/arch/x86/32/core.hpp index 1741ce4..250007e 100644 --- a/srook/config/arch/x86/32/core.hpp +++ b/srook/config/arch/x86/32/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_X86_32_CORE_HPP #define INCLUDED_SROOK_CONFIG_ARCH_X86_32_CORE_HPP #if defined(i386) || \ diff --git a/srook/config/arch/x86/32/version.hpp b/srook/config/arch/x86/32/version.hpp index 6c40166..bfeb14d 100644 --- a/srook/config/arch/x86/32/version.hpp +++ b/srook/config/arch/x86/32/version.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_X86_32_VERSION_HPP #define INCLUDED_SROOK_CONFIG_ARCH_X86_32_VERSION_HPP #include diff --git a/srook/config/arch/x86/64.hpp b/srook/config/arch/x86/64.hpp index c4dcacf..d9d99bb 100644 --- a/srook/config/arch/x86/64.hpp +++ b/srook/config/arch/x86/64.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // Detecting to pre-defined macro of [Intel IA-64 architecture](http://en.wikipedia.org/wiki/Ia64). #ifndef INCLUDED_SROOK_CONFIG_ARCH_x86_64_HPP #define INCLUDED_SROOK_CONFIG_ARCH_x86_64_HPP diff --git a/srook/config/arch/x86/64/core.hpp b/srook/config/arch/x86/64/core.hpp index 956d0e3..ebc1ae5 100644 --- a/srook/config/arch/x86/64/core.hpp +++ b/srook/config/arch/x86/64/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_X86_64_CORE_HPP #define INCLUDED_SROOK_CONFIG_ARCH_X86_64_CORE_HPP #if defined(__x86_64) || defined(__x86_64__) || defined(__amd64__) || defined(__amd64) || defined(_M_X64) diff --git a/srook/config/arch_wordsize.hpp b/srook/config/arch_wordsize.hpp index 7b1714d..abd8286 100644 --- a/srook/config/arch_wordsize.hpp +++ b/srook/config/arch_wordsize.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ARCH_WORDSIZE_HPP #define INCLUDED_SROOK_CONFIG_ARCH_WORDSIZE_HPP diff --git a/srook/config/attribute.hpp b/srook/config/attribute.hpp index 4c57fa9..18438f1 100644 --- a/srook/config/attribute.hpp +++ b/srook/config/attribute.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_HPP #include diff --git a/srook/config/attribute/aligned.hpp b/srook/config/attribute/aligned.hpp index 564bccd..9b23238 100644 --- a/srook/config/attribute/aligned.hpp +++ b/srook/config/attribute/aligned.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_ALIGNED_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_ALIGNED_HPP diff --git a/srook/config/attribute/carries_dependency.hpp b/srook/config/attribute/carries_dependency.hpp index 3c3b96c..4887dbd 100644 --- a/srook/config/attribute/carries_dependency.hpp +++ b/srook/config/attribute/carries_dependency.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_CARRIES_DEPENDENCY_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_CARRIES_DEPENDENCY_HPP diff --git a/srook/config/attribute/deprecated.hpp b/srook/config/attribute/deprecated.hpp index 4679c59..9c1eea7 100644 --- a/srook/config/attribute/deprecated.hpp +++ b/srook/config/attribute/deprecated.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_DEPRECATED_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_DEPRECATED_HPP diff --git a/srook/config/attribute/diagnose.hpp b/srook/config/attribute/diagnose.hpp index 6a5c543..38f3b0b 100644 --- a/srook/config/attribute/diagnose.hpp +++ b/srook/config/attribute/diagnose.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_DIAGNOSE_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_DIAGNOSE_HPP diff --git a/srook/config/attribute/fallthrough.hpp b/srook/config/attribute/fallthrough.hpp index ddce214..a415399 100644 --- a/srook/config/attribute/fallthrough.hpp +++ b/srook/config/attribute/fallthrough.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_FALLTHROUGH_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_FALLTHROUGH_HPP #include diff --git a/srook/config/attribute/force_inline.hpp b/srook/config/attribute/force_inline.hpp index a4f3cf0..32d3853 100644 --- a/srook/config/attribute/force_inline.hpp +++ b/srook/config/attribute/force_inline.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_FORCE_INLINE_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_FORCE_INLINE_HPP diff --git a/srook/config/attribute/maybe_unused.hpp b/srook/config/attribute/maybe_unused.hpp index 80c7272..8b39dc2 100644 --- a/srook/config/attribute/maybe_unused.hpp +++ b/srook/config/attribute/maybe_unused.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_MAYBE_UNUSED_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_MAYBE_UNUSED_HPP #include diff --git a/srook/config/attribute/noalias.hpp b/srook/config/attribute/noalias.hpp index 9e0b129..56a440f 100644 --- a/srook/config/attribute/noalias.hpp +++ b/srook/config/attribute/noalias.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_NO_ALIAS_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_NO_ALIAS_HPP diff --git a/srook/config/attribute/nodiscard.hpp b/srook/config/attribute/nodiscard.hpp index 0dcee66..eaaa7d0 100644 --- a/srook/config/attribute/nodiscard.hpp +++ b/srook/config/attribute/nodiscard.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_NODISCARD_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_NODISCARD_HPP #include diff --git a/srook/config/attribute/noinline.hpp b/srook/config/attribute/noinline.hpp index 9420eea..756af46 100644 --- a/srook/config/attribute/noinline.hpp +++ b/srook/config/attribute/noinline.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_NO_INLINE_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_NO_INLINE_HPP diff --git a/srook/config/attribute/noreturn.hpp b/srook/config/attribute/noreturn.hpp index 5a59aab..8d4c836 100644 --- a/srook/config/attribute/noreturn.hpp +++ b/srook/config/attribute/noreturn.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_NO_RETURN_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_NO_RETURN_HPP diff --git a/srook/config/attribute/packed.hpp b/srook/config/attribute/packed.hpp index 176deb8..98cb63f 100644 --- a/srook/config/attribute/packed.hpp +++ b/srook/config/attribute/packed.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_PACKED_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_PACKED_HPP diff --git a/srook/config/attribute/packed/begin.hpp b/srook/config/attribute/packed/begin.hpp index 79f8a29..d78b6ce 100644 --- a/srook/config/attribute/packed/begin.hpp +++ b/srook/config/attribute/packed/begin.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_PACKED_BEGIN_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_PACKED_BEGIN_HPP diff --git a/srook/config/attribute/packed/end.hpp b/srook/config/attribute/packed/end.hpp index 9d8678d..6311962 100644 --- a/srook/config/attribute/packed/end.hpp +++ b/srook/config/attribute/packed/end.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_PACKED_END_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_PACKED_END_HPP diff --git a/srook/config/attribute/packed/specify.hpp b/srook/config/attribute/packed/specify.hpp index c1454da..4d1690d 100644 --- a/srook/config/attribute/packed/specify.hpp +++ b/srook/config/attribute/packed/specify.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_PACKED_SPECIFY_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_PACKED_SPECIFY_HPP diff --git a/srook/config/attribute/preferred_overload.hpp b/srook/config/attribute/preferred_overload.hpp index 0e3da74..124aec9 100644 --- a/srook/config/attribute/preferred_overload.hpp +++ b/srook/config/attribute/preferred_overload.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_PREFERRED_OVERLOAD_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_PREFERRED_OVERLOAD_HPP diff --git a/srook/config/attribute/restrict.hpp b/srook/config/attribute/restrict.hpp index 9a2f720..a2afc75 100644 --- a/srook/config/attribute/restrict.hpp +++ b/srook/config/attribute/restrict.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_RESTRICT_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_RESTRICT_HPP diff --git a/srook/config/attribute/returns_nonnull.hpp b/srook/config/attribute/returns_nonnull.hpp index 40dccc1..0af8044 100644 --- a/srook/config/attribute/returns_nonnull.hpp +++ b/srook/config/attribute/returns_nonnull.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_RETURNS_NONNULL_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_RETURNS_NONNULL_HPP diff --git a/srook/config/attribute/visibility.hpp b/srook/config/attribute/visibility.hpp index bedd172..dfcab6a 100644 --- a/srook/config/attribute/visibility.hpp +++ b/srook/config/attribute/visibility.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_HPP diff --git a/srook/config/attribute/visibility/base.hpp b/srook/config/attribute/visibility/base.hpp index b6d5b89..93a8f7e 100644 --- a/srook/config/attribute/visibility/base.hpp +++ b/srook/config/attribute/visibility/base.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_BASE_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_BASE_HPP diff --git a/srook/config/attribute/visibility/detail/class_template_instantiation.hpp b/srook/config/attribute/visibility/detail/class_template_instantiation.hpp index 96eb112..fe23791 100644 --- a/srook/config/attribute/visibility/detail/class_template_instantiation.hpp +++ b/srook/config/attribute/visibility/detail/class_template_instantiation.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_CLASS_TEMPLATE_INSTANTIATION_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_CLASS_TEMPLATE_INSTANTIATION_HPP diff --git a/srook/config/attribute/visibility/detail/class_template_instantiation/default.hpp b/srook/config/attribute/visibility/detail/class_template_instantiation/default.hpp index c131e8b..fa8e8a6 100644 --- a/srook/config/attribute/visibility/detail/class_template_instantiation/default.hpp +++ b/srook/config/attribute/visibility/detail/class_template_instantiation/default.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_CLASS_TEMPLATE_INSTANTIATION_VIS_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_CLASS_TEMPLATE_INSTANTIATION_VIS_HPP #if !defined(SROOK_ATTRIBUTE_CLASS_TEMPLATE_INSTANTIATION_VIS) && !defined(SROOK_ATTRIBUTE_CLASS_TEMPLATE_INSTANTIATION_VIS) diff --git a/srook/config/attribute/visibility/detail/class_template_instantiation/hidden.hpp b/srook/config/attribute/visibility/detail/class_template_instantiation/hidden.hpp index 1af9a07..d9adf7a 100644 --- a/srook/config/attribute/visibility/detail/class_template_instantiation/hidden.hpp +++ b/srook/config/attribute/visibility/detail/class_template_instantiation/hidden.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_HIDDENIBILITY_DETAIL_CLASS_TEMPLATE_INSTANTIATION_HIDDEN_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_HIDDENIBILITY_DETAIL_CLASS_TEMPLATE_INSTANTIATION_HIDDEN_HPP #if !defined(SROOK_ATTRIBUTE_CLASS_TEMPLATE_INSTANTIATION_HIDDEN) && !defined(SROOK_ATTRIBUTE_CLASS_TEMPLATE_INSTANTIATION_HIDDEN) diff --git a/srook/config/attribute/visibility/detail/enum.hpp b/srook/config/attribute/visibility/detail/enum.hpp index 8a16eb3..bd99783 100644 --- a/srook/config/attribute/visibility/detail/enum.hpp +++ b/srook/config/attribute/visibility/detail/enum.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_ENUM_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_ENUM_HPP diff --git a/srook/config/attribute/visibility/detail/enum/default.hpp b/srook/config/attribute/visibility/detail/enum/default.hpp index 79d34fc..3414c86 100644 --- a/srook/config/attribute/visibility/detail/enum/default.hpp +++ b/srook/config/attribute/visibility/detail/enum/default.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_ENUM_VIS_DEFAULT_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_ENUM_VIS_DEFAULT_HPP diff --git a/srook/config/attribute/visibility/detail/enum/hidden.hpp b/srook/config/attribute/visibility/detail/enum/hidden.hpp index 90a778f..a878c23 100644 --- a/srook/config/attribute/visibility/detail/enum/hidden.hpp +++ b/srook/config/attribute/visibility/detail/enum/hidden.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_ENUM_VIS_HIDDEN_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_ENUM_VIS_HIDDEN_HPP diff --git a/srook/config/attribute/visibility/detail/exception.hpp b/srook/config/attribute/visibility/detail/exception.hpp index e549abb..28f6b80 100644 --- a/srook/config/attribute/visibility/detail/exception.hpp +++ b/srook/config/attribute/visibility/detail/exception.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_EXCEPTION_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_EXCEPTION_HPP diff --git a/srook/config/attribute/visibility/detail/exception/default.hpp b/srook/config/attribute/visibility/detail/exception/default.hpp index 6413fc6..ad6fd66 100644 --- a/srook/config/attribute/visibility/detail/exception/default.hpp +++ b/srook/config/attribute/visibility/detail/exception/default.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_EXCEPTION_DEFAULT_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_EXCEPTION_DEFAULT_HPP diff --git a/srook/config/attribute/visibility/detail/exception/hidden.hpp b/srook/config/attribute/visibility/detail/exception/hidden.hpp index 42e433e..8c1ebd8 100644 --- a/srook/config/attribute/visibility/detail/exception/hidden.hpp +++ b/srook/config/attribute/visibility/detail/exception/hidden.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_EXCEPTION_HIDDEN_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_EXCEPTION_HIDDEN_HPP diff --git a/srook/config/attribute/visibility/detail/extern.hpp b/srook/config/attribute/visibility/detail/extern.hpp index 19f5237..97072d8 100644 --- a/srook/config/attribute/visibility/detail/extern.hpp +++ b/srook/config/attribute/visibility/detail/extern.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_EXTERN_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_EXTERN_HPP diff --git a/srook/config/attribute/visibility/detail/extern/default.hpp b/srook/config/attribute/visibility/detail/extern/default.hpp index ed07ed3..4374dbb 100644 --- a/srook/config/attribute/visibility/detail/extern/default.hpp +++ b/srook/config/attribute/visibility/detail/extern/default.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_EXTERN_DEFAULT_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_EXTERN_DEFAULT_HPP diff --git a/srook/config/attribute/visibility/detail/extern/hidden.hpp b/srook/config/attribute/visibility/detail/extern/hidden.hpp index 38b3d9e..0d9421a 100644 --- a/srook/config/attribute/visibility/detail/extern/hidden.hpp +++ b/srook/config/attribute/visibility/detail/extern/hidden.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_EXTERN_HIDDEN_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_EXTERN_HIDDEN_HPP diff --git a/srook/config/attribute/visibility/detail/function.hpp b/srook/config/attribute/visibility/detail/function.hpp index dfb3045..c159f7d 100644 --- a/srook/config/attribute/visibility/detail/function.hpp +++ b/srook/config/attribute/visibility/detail/function.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_FUNCTION_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_FUNCTION_HPP diff --git a/srook/config/attribute/visibility/detail/function/default.hpp b/srook/config/attribute/visibility/detail/function/default.hpp index 671492d..85afe51 100644 --- a/srook/config/attribute/visibility/detail/function/default.hpp +++ b/srook/config/attribute/visibility/detail/function/default.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_FUNCTION_DEFAULT_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_FUNCTION_DEFAULT_HPP diff --git a/srook/config/attribute/visibility/detail/function/hidden.hpp b/srook/config/attribute/visibility/detail/function/hidden.hpp index 1fb1417..93ce625 100644 --- a/srook/config/attribute/visibility/detail/function/hidden.hpp +++ b/srook/config/attribute/visibility/detail/function/hidden.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_FUNCTION_HIDDEN_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_FUNCTION_HIDDEN_HPP diff --git a/srook/config/attribute/visibility/detail/inline.hpp b/srook/config/attribute/visibility/detail/inline.hpp index 4f84f0f..cfced30 100644 --- a/srook/config/attribute/visibility/detail/inline.hpp +++ b/srook/config/attribute/visibility/detail/inline.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_INLINE_VISIBILITY_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_INLINE_VISIBILITY_HPP diff --git a/srook/config/attribute/visibility/detail/overridable_function.hpp b/srook/config/attribute/visibility/detail/overridable_function.hpp index e50af51..34f15d0 100644 --- a/srook/config/attribute/visibility/detail/overridable_function.hpp +++ b/srook/config/attribute/visibility/detail/overridable_function.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_OVERRIDABLE_FUNCTION_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_OVERRIDABLE_FUNCTION_HPP diff --git a/srook/config/attribute/visibility/detail/overridable_function/default.hpp b/srook/config/attribute/visibility/detail/overridable_function/default.hpp index 9c38198..60aaa34 100644 --- a/srook/config/attribute/visibility/detail/overridable_function/default.hpp +++ b/srook/config/attribute/visibility/detail/overridable_function/default.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_OVERRIDABLE_FUNCTION_DEFAULT_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_OVERRIDABLE_FUNCTION_DEFAULT_HPP diff --git a/srook/config/attribute/visibility/detail/overridable_function/hidden.hpp b/srook/config/attribute/visibility/detail/overridable_function/hidden.hpp index f8b629d..588fad5 100644 --- a/srook/config/attribute/visibility/detail/overridable_function/hidden.hpp +++ b/srook/config/attribute/visibility/detail/overridable_function/hidden.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_OVERRIDABLE_FUNCTION_HIDDEN_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_OVERRIDABLE_FUNCTION_HIDDEN_HPP diff --git a/srook/config/attribute/visibility/detail/template.hpp b/srook/config/attribute/visibility/detail/template.hpp index 6103676..8dc956a 100644 --- a/srook/config/attribute/visibility/detail/template.hpp +++ b/srook/config/attribute/visibility/detail/template.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_TEMPLETE_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_TEMPLETE_HPP diff --git a/srook/config/attribute/visibility/detail/template/default.hpp b/srook/config/attribute/visibility/detail/template/default.hpp index d657492..7298745 100644 --- a/srook/config/attribute/visibility/detail/template/default.hpp +++ b/srook/config/attribute/visibility/detail/template/default.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_TEMPLETE_DEFAULT_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_TEMPLETE_DEFAULT_HPP diff --git a/srook/config/attribute/visibility/detail/template/hidden.hpp b/srook/config/attribute/visibility/detail/template/hidden.hpp index b7254a9..d00a154 100644 --- a/srook/config/attribute/visibility/detail/template/hidden.hpp +++ b/srook/config/attribute/visibility/detail/template/hidden.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_TEMPLETE_HIDDEN_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_TEMPLETE_HIDDEN_HPP diff --git a/srook/config/attribute/visibility/detail/tmethod_implicit_instantiation/default.hpp b/srook/config/attribute/visibility/detail/tmethod_implicit_instantiation/default.hpp index 62865f3..5ce8f9d 100644 --- a/srook/config/attribute/visibility/detail/tmethod_implicit_instantiation/default.hpp +++ b/srook/config/attribute/visibility/detail/tmethod_implicit_instantiation/default.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_TMETHOD_TEMPLATE_IMPLICIT_INSTANTIATION_DEFAULT_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_TMETHOD_TEMPLATE_IMPLICIT_INSTANTIATION_DEFAULT_HPP diff --git a/srook/config/attribute/visibility/detail/tmethod_implicit_instantiation/hidden.hpp b/srook/config/attribute/visibility/detail/tmethod_implicit_instantiation/hidden.hpp index 818f64f..7c7fd10 100644 --- a/srook/config/attribute/visibility/detail/tmethod_implicit_instantiation/hidden.hpp +++ b/srook/config/attribute/visibility/detail/tmethod_implicit_instantiation/hidden.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_TMETHOD_TEMPLATE_IMPLICIT_INSTANTIATION_HIDDEN_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_TMETHOD_TEMPLATE_IMPLICIT_INSTANTIATION_HIDDEN_HPP diff --git a/srook/config/attribute/visibility/detail/tmethod_implicit_intantiation.hpp b/srook/config/attribute/visibility/detail/tmethod_implicit_intantiation.hpp index 21f3e4c..18ace2c 100644 --- a/srook/config/attribute/visibility/detail/tmethod_implicit_intantiation.hpp +++ b/srook/config/attribute/visibility/detail/tmethod_implicit_intantiation.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_TMETHOD_IMPLICIT_INSTANTIATION_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAIL_TMETHOD_IMPLICIT_INSTANTIATION_HPP #include diff --git a/srook/config/attribute/visibility/detail/type.hpp b/srook/config/attribute/visibility/detail/type.hpp index 1145c64..9ddbe10 100644 --- a/srook/config/attribute/visibility/detail/type.hpp +++ b/srook/config/attribute/visibility/detail/type.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_TYPE_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_TYPE_HPP diff --git a/srook/config/attribute/visibility/detail/type/default.hpp b/srook/config/attribute/visibility/detail/type/default.hpp index 37ce2ea..72bf8a9 100644 --- a/srook/config/attribute/visibility/detail/type/default.hpp +++ b/srook/config/attribute/visibility/detail/type/default.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_TYPE_DEFAULT_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_TYPE_DEFAULT_HPP diff --git a/srook/config/attribute/visibility/detail/type/hidden.hpp b/srook/config/attribute/visibility/detail/type/hidden.hpp index d529730..2204a52 100644 --- a/srook/config/attribute/visibility/detail/type/hidden.hpp +++ b/srook/config/attribute/visibility/detail/type/hidden.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_TYPE_HIDDEN_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_TYPE_HIDDEN_HPP diff --git a/srook/config/attribute/visibility/details.hpp b/srook/config/attribute/visibility/details.hpp index 7500cb2..32e1dd2 100644 --- a/srook/config/attribute/visibility/details.hpp +++ b/srook/config/attribute/visibility/details.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAILS_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_VISIBILITY_DETAILS_HPP diff --git a/srook/config/attribute/weak.hpp b/srook/config/attribute/weak.hpp index b2563dd..804b56c 100644 --- a/srook/config/attribute/weak.hpp +++ b/srook/config/attribute/weak.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_WEAK_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_WEAK_HPP diff --git a/srook/config/attribute/zero_init.hpp b/srook/config/attribute/zero_init.hpp index fc3cb6e..20e239a 100644 --- a/srook/config/attribute/zero_init.hpp +++ b/srook/config/attribute/zero_init.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_ZERO_INIT_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_ZERO_INIT_HPP diff --git a/srook/config/byte.hpp b/srook/config/byte.hpp index e1eacc3..52237dc 100644 --- a/srook/config/byte.hpp +++ b/srook/config/byte.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_BYTE_HPP #define INCLUDED_SROOK_CONFIG_BYTE_HPP diff --git a/srook/config/compiler.hpp b/srook/config/compiler.hpp index 9fe12d6..03ec98d 100644 --- a/srook/config/compiler.hpp +++ b/srook/config/compiler.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_HPP diff --git a/srook/config/compiler/ILE.hpp b/srook/config/compiler/ILE.hpp index b50b7e0..962f3f4 100644 --- a/srook/config/compiler/ILE.hpp +++ b/srook/config/compiler/ILE.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_ILE_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_ILE_HPP diff --git a/srook/config/compiler/ILE/core.hpp b/srook/config/compiler/ILE/core.hpp index 5bf932e..bbe6b12 100644 --- a/srook/config/compiler/ILE/core.hpp +++ b/srook/config/compiler/ILE/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_ILE_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_ILE_HPP diff --git a/srook/config/compiler/clang.hpp b/srook/config/compiler/clang.hpp index f5bf9a7..709204d 100644 --- a/srook/config/compiler/clang.hpp +++ b/srook/config/compiler/clang.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_CLANG_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_CLANG_HPP diff --git a/srook/config/compiler/common_edg.hpp b/srook/config/compiler/common_edg.hpp index ec60bdc..15ac22b 100644 --- a/srook/config/compiler/common_edg.hpp +++ b/srook/config/compiler/common_edg.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_COMMON_EDG_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_COMMON_EDG_HPP diff --git a/srook/config/compiler/common_edg/core.hpp b/srook/config/compiler/common_edg/core.hpp index 2ead16f..bce78df 100644 --- a/srook/config/compiler/common_edg/core.hpp +++ b/srook/config/compiler/common_edg/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_COMMON_EDG_CORE_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_COMMON_EDG_CORE_HPP diff --git a/srook/config/compiler/gcc.hpp b/srook/config/compiler/gcc.hpp index 6393022..7c8baee 100644 --- a/srook/config/compiler/gcc.hpp +++ b/srook/config/compiler/gcc.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_GCC_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_GCC_HPP diff --git a/srook/config/compiler/gcc/core.hpp b/srook/config/compiler/gcc/core.hpp index 46aeb1e..c423869 100644 --- a/srook/config/compiler/gcc/core.hpp +++ b/srook/config/compiler/gcc/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_GCC_CORE_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_GCC_CORE_HPP #ifdef __GNUC__ diff --git a/srook/config/compiler/intel.hpp b/srook/config/compiler/intel.hpp index 1e3712a..f41eacd 100644 --- a/srook/config/compiler/intel.hpp +++ b/srook/config/compiler/intel.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_INTEL_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_INTEL_HPP diff --git a/srook/config/compiler/intel/core.hpp b/srook/config/compiler/intel/core.hpp index e8746d1..967a22c 100644 --- a/srook/config/compiler/intel/core.hpp +++ b/srook/config/compiler/intel/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_INTEL_CORE_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_INTEL_CORE_HPP #ifdef __INTEL_COMPILER diff --git a/srook/config/compiler/longlong_type.hpp b/srook/config/compiler/longlong_type.hpp index 244fb5c..c977c0f 100644 --- a/srook/config/compiler/longlong_type.hpp +++ b/srook/config/compiler/longlong_type.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_EXTENTION_LONGLONG_TYPE_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_EXTENTION_LONGLONG_TYPE_HPP diff --git a/srook/config/compiler/msvc.hpp b/srook/config/compiler/msvc.hpp index 45c858e..6e3132a 100644 --- a/srook/config/compiler/msvc.hpp +++ b/srook/config/compiler/msvc.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_MSVC_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_MSVC_HPP diff --git a/srook/config/compiler/msvc/core.hpp b/srook/config/compiler/msvc/core.hpp index 0bd70e9..2d562d7 100644 --- a/srook/config/compiler/msvc/core.hpp +++ b/srook/config/compiler/msvc/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_MSVC_CORE_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_MSVC_CORE_HPP #ifdef _MSC_VER diff --git a/srook/config/compiler/msvc/includes.hpp b/srook/config/compiler/msvc/includes.hpp index 82991c7..54d09da 100644 --- a/srook/config/compiler/msvc/includes.hpp +++ b/srook/config/compiler/msvc/includes.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_MSVC_INCLUDES_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_MSVC_INCLUDES_HPP diff --git a/srook/config/compiler/pathscale.hpp b/srook/config/compiler/pathscale.hpp index c421fa7..d96431c 100644 --- a/srook/config/compiler/pathscale.hpp +++ b/srook/config/compiler/pathscale.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_PATHSCALE_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_PATHSCALE_HPP diff --git a/srook/config/compiler/pragma.hpp b/srook/config/compiler/pragma.hpp index 71b3933..00c84fc 100644 --- a/srook/config/compiler/pragma.hpp +++ b/srook/config/compiler/pragma.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_PRAGMA_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_PRAGMA_HPP diff --git a/srook/config/compiler/pragma/core.hpp b/srook/config/compiler/pragma/core.hpp index 9d266fe..93902c3 100644 --- a/srook/config/compiler/pragma/core.hpp +++ b/srook/config/compiler/pragma/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_PRAGMA_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_PRAGMA_HPP diff --git a/srook/config/compiler/version.hpp b/srook/config/compiler/version.hpp index bd0f4b6..ca9983a 100644 --- a/srook/config/compiler/version.hpp +++ b/srook/config/compiler/version.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_VERSION_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_VERSION_HPP diff --git a/srook/config/compiler_version.hpp b/srook/config/compiler_version.hpp index 5d9bae6..bf09090 100644 --- a/srook/config/compiler_version.hpp +++ b/srook/config/compiler_version.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_COMPILER_VERSION_HPP #define INCLUDED_SROOK_CONFIG_COMPILER_VERSION_HPP diff --git a/srook/config/cpp_predefined/__cplusplus_constant.hpp b/srook/config/cpp_predefined/__cplusplus_constant.hpp index 613aac6..31abca1 100644 --- a/srook/config/cpp_predefined/__cplusplus_constant.hpp +++ b/srook/config/cpp_predefined/__cplusplus_constant.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_CPP_PREDEFINED___CPLUSPLUS_CONSTANT_HPP #define INCLUDED_SROOK_CONFIG_CPP_PREDEFINED___CPLUSPLUS_CONSTANT_HPP diff --git a/srook/config/cpp_predefined/feature_testing.hpp b/srook/config/cpp_predefined/feature_testing.hpp index bac2722..026840e 100644 --- a/srook/config/cpp_predefined/feature_testing.hpp +++ b/srook/config/cpp_predefined/feature_testing.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_CPP_PREDEFINED_FEATURE_TESTING_HPP #define INCLUDED_SROOK_CONFIG_CPP_PREDEFINED_FEATURE_TESTING_HPP diff --git a/srook/config/cpp_predefined/macro_names.hpp b/srook/config/cpp_predefined/macro_names.hpp index c2f1a14..813ec2a 100644 --- a/srook/config/cpp_predefined/macro_names.hpp +++ b/srook/config/cpp_predefined/macro_names.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // N4660 19.8 Predefined macro names [cpp.predefined] #ifndef INCLUDED_SROOK_CONFIG_CPP_PREDEFINED_MACRO_NAMES_HPP #define INCLUDED_SROOK_CONFIG_CPP_PREDEFINED_MACRO_NAMES_HPP diff --git a/srook/config/disable_warnings/default_disable.hpp b/srook/config/disable_warnings/default_disable.hpp index e05f311..48c8601 100644 --- a/srook/config/disable_warnings/default_disable.hpp +++ b/srook/config/disable_warnings/default_disable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_DISABLE_WARNINGS_DEFAULT_DISABLES_HPP #define INCLUDED_SROOK_CONFIG_DISABLE_WARNINGS_DEFAULT_DISABLES_HPP diff --git a/srook/config/env.hpp b/srook/config/env.hpp index 6d6a217..3e8f26d 100644 --- a/srook/config/env.hpp +++ b/srook/config/env.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ENV_HPP #define INCLUDED_SROOK_CONFIG_ENV_HPP diff --git a/srook/config/environment/os.hpp b/srook/config/environment/os.hpp index 2f60096..a7de2c5 100644 --- a/srook/config/environment/os.hpp +++ b/srook/config/environment/os.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ENV_OS_HPP #define INCLUDED_SROOK_CONFIG_ENV_OS_HPP diff --git a/srook/config/environment/os/apple.hpp b/srook/config/environment/os/apple.hpp index ed9e511..473d368 100644 --- a/srook/config/environment/os/apple.hpp +++ b/srook/config/environment/os/apple.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ENVIRONMENT_OS_APPLE_HPP #define INCLUDED_SROOK_CONFIG_ENVIRONMENT_OS_APPLE_HPP diff --git a/srook/config/environment/os/apple/core.hpp b/srook/config/environment/os/apple/core.hpp index a212c30..95110e4 100644 --- a/srook/config/environment/os/apple/core.hpp +++ b/srook/config/environment/os/apple/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ENVIRONMENT_OS_APPLE_CORE_HPP #define INCLUDED_SROOK_CONFIG_ENVIRONMENT_OS_APPLE_CORE_HPP diff --git a/srook/config/environment/os/apple/features.hpp b/srook/config/environment/os/apple/features.hpp index 1f4d7dd..f565133 100644 --- a/srook/config/environment/os/apple/features.hpp +++ b/srook/config/environment/os/apple/features.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ENVIRONMENT_OS_APPLE_FEATURES_HPP #define INCLUDED_SROOK_CONFIG_ENVIRONMENT_OS_APPLE_FEATURES_HPP diff --git a/srook/config/environment/os/endian.hpp b/srook/config/environment/os/endian.hpp index 5bd0ac4..f248f12 100644 --- a/srook/config/environment/os/endian.hpp +++ b/srook/config/environment/os/endian.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ENV_ENDIAN_HPP #define INCLUDED_SROOK_CONFIG_ENV_ENDIAN_HPP diff --git a/srook/config/environment/os/endian/FreeBSD/header.hpp b/srook/config/environment/os/endian/FreeBSD/header.hpp index 0bf795a..09b0fca 100644 --- a/srook/config/environment/os/endian/FreeBSD/header.hpp +++ b/srook/config/environment/os/endian/FreeBSD/header.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ENV_OS_BSD_HEADER_HPP #define INCLUDED_SROOK_CONFIG_ENV_OS_BSD_HEADER_HPP diff --git a/srook/config/environment/os/endian/Win32/header.hpp b/srook/config/environment/os/endian/Win32/header.hpp index 8817f31..cd6baa3 100644 --- a/srook/config/environment/os/endian/Win32/header.hpp +++ b/srook/config/environment/os/endian/Win32/header.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ENV_OS_WIN32_HPP #define INCLUDED_SROOK_CONFIG_ENV_OS_WIN32_HPP diff --git a/srook/config/environment/os/endian/linux/header.hpp b/srook/config/environment/os/endian/linux/header.hpp index af6944d..0f01d21 100644 --- a/srook/config/environment/os/endian/linux/header.hpp +++ b/srook/config/environment/os/endian/linux/header.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ENV_OS_LINUX_LINUX_OS_HPP #define INCLUDED_SROOK_CONFIG_ENV_OS_LINUX_LINUX_OS_HPP diff --git a/srook/config/environment/os/endian/sun/header.hpp b/srook/config/environment/os/endian/sun/header.hpp index 2340231..e56c947 100644 --- a/srook/config/environment/os/endian/sun/header.hpp +++ b/srook/config/environment/os/endian/sun/header.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ENV_OS_ENDIAN_SUN_HPP #define INCLUDED_SROOK_CONFIG_ENV_OS_ENDIAN_SUN_HPP diff --git a/srook/config/environment/os/filesystem.hpp b/srook/config/environment/os/filesystem.hpp index 78ac161..bf6780a 100644 --- a/srook/config/environment/os/filesystem.hpp +++ b/srook/config/environment/os/filesystem.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ENV_OS_FILESYSTEM_HPP #define INCLUDED_SROOK_CONFIG_ENV_OS_FILESYSTEM_HPP diff --git a/srook/config/environment/os/linux.hpp b/srook/config/environment/os/linux.hpp index 50ea8c8..7aaeb91 100644 --- a/srook/config/environment/os/linux.hpp +++ b/srook/config/environment/os/linux.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ENVIRONMENT_OS_LINUX_HPP #define INCLUDED_SROOK_CONFIG_ENVIRONMENT_OS_LINUX_HPP diff --git a/srook/config/environment/os/linux/net/if_ether.hpp b/srook/config/environment/os/linux/net/if_ether.hpp index de3f167..701ec0c 100644 --- a/srook/config/environment/os/linux/net/if_ether.hpp +++ b/srook/config/environment/os/linux/net/if_ether.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ENVIRONMENT_OS_LINUX_NET_IF_ETHER_HPP #define INCLUDED_SROOK_CONFIG_ENVIRONMENT_OS_LINUX_NET_IF_ETHER_HPP diff --git a/srook/config/environment/os/stdio.hpp b/srook/config/environment/os/stdio.hpp index c210000..18ffbc4 100644 --- a/srook/config/environment/os/stdio.hpp +++ b/srook/config/environment/os/stdio.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ENV_OS_STDIO_HPP #define INCLUDED_SROOK_CONFIG_ENV_OS_STDIO_HPP diff --git a/srook/config/environment/os/thread_api.hpp b/srook/config/environment/os/thread_api.hpp index c0f43b4..f5b6e7a 100644 --- a/srook/config/environment/os/thread_api.hpp +++ b/srook/config/environment/os/thread_api.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ENV_OS_THREAD_API_HPP #define INCLUDED_SROOK_CONFIG_ENV_OS_THREAD_API_HPP diff --git a/srook/config/environment/os/win.hpp b/srook/config/environment/os/win.hpp index 4f2bc84..f44e8cf 100644 --- a/srook/config/environment/os/win.hpp +++ b/srook/config/environment/os/win.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ENVIRONMENT_OS_WIN_HPP #define INCLUDED_SROOK_CONFIG_ENVIRONMENT_OS_WIN_HPP diff --git a/srook/config/environment/os/win/core.hpp b/srook/config/environment/os/win/core.hpp index 33de592..861cdfc 100644 --- a/srook/config/environment/os/win/core.hpp +++ b/srook/config/environment/os/win/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_CONFIG_ENVIRONMENT_OS_WIN_CORE_HPP #define INCLUDED_SROOK_CONFIG_CONFIG_ENVIRONMENT_OS_WIN_CORE_HPP diff --git a/srook/config/extension.hpp b/srook/config/extension.hpp index 74c2bf5..7a8a353 100644 --- a/srook/config/extension.hpp +++ b/srook/config/extension.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_EXTENSION_HPP #define INCLUDED_SROOK_CONFIG_EXTENSION_HPP diff --git a/srook/config/extension/Nonnull.hpp b/srook/config/extension/Nonnull.hpp index f62da6a..db361ae 100644 --- a/srook/config/extension/Nonnull.hpp +++ b/srook/config/extension/Nonnull.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_EXTENSION_NONNULL_HPP #define INCLUDED_SROOK_CONFIG_EXTENSION_NONNULL_HPP diff --git a/srook/config/extension/Nullable.hpp b/srook/config/extension/Nullable.hpp index b11e027..5d24d14 100644 --- a/srook/config/extension/Nullable.hpp +++ b/srook/config/extension/Nullable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_EXTENSION_NULLABLE_HPP #define INCLUDED_SROOK_CONFIG_EXTENSION_NULLABLE_HPP diff --git a/srook/config/extension/Nullunspecified.hpp b/srook/config/extension/Nullunspecified.hpp index c2a9184..9605f92 100644 --- a/srook/config/extension/Nullunspecified.hpp +++ b/srook/config/extension/Nullunspecified.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_EXTENSION_NULL_UNSPECIFIED_HPP #define INCLUDED_SROOK_CONFIG_EXTENSION_NULL_UNSPECIFIED_HPP diff --git a/srook/config/extension/irq_control.hpp b/srook/config/extension/irq_control.hpp index 3d07bca..c99ae69 100644 --- a/srook/config/extension/irq_control.hpp +++ b/srook/config/extension/irq_control.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_EXTENSION_IRQ_CONTROL_HPP #define INCLUDED_SROOK_CONFIG_EXTENSION_IRQ_CONTROL_HPP diff --git a/srook/config/extension/no_se_condition_op.hpp b/srook/config/extension/no_se_condition_op.hpp index 2a57894..1e72ed1 100644 --- a/srook/config/extension/no_se_condition_op.hpp +++ b/srook/config/extension/no_se_condition_op.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_NO_SE_CONDITION_OPERANDS_HPP #define INCLUDED_SROOK_CONFIG_NO_SE_CONDITION_OPERANDS_HPP diff --git a/srook/config/extension/unreachable.hpp b/srook/config/extension/unreachable.hpp index fd0ffe6..82370b8 100644 --- a/srook/config/extension/unreachable.hpp +++ b/srook/config/extension/unreachable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_EXTENSION_UNREACHBLE_HPP #define INCLUDED_SROOK_CONFIG_EXTENSION_UNREACHBLE_HPP diff --git a/srook/config/feature.hpp b/srook/config/feature.hpp index b812bd0..e652444 100644 --- a/srook/config/feature.hpp +++ b/srook/config/feature.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONIG_FEATURE_HPP #define INCLUDED_SROOK_CONIG_FEATURE_HPP #include diff --git a/srook/config/feature/alignas.hpp b/srook/config/feature/alignas.hpp index 3c3f9b1..8a03fe9 100644 --- a/srook/config/feature/alignas.hpp +++ b/srook/config/feature/alignas.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_ALIGNNAS_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_ALIGNNAS_HPP diff --git a/srook/config/feature/alignof.hpp b/srook/config/feature/alignof.hpp index 7f13eca..7052b2e 100644 --- a/srook/config/feature/alignof.hpp +++ b/srook/config/feature/alignof.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_ATTRIBUTE_ALIGNOF_HPP #define INCLUDED_SROOK_CONFIG_ATTRIBUTE_ALIGNOF_HPP diff --git a/srook/config/feature/constexpr.hpp b/srook/config/feature/constexpr.hpp index d55c356..0cd9e02 100644 --- a/srook/config/feature/constexpr.hpp +++ b/srook/config/feature/constexpr.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_CONSTEXPR_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_CONSTEXPR_HPP #include diff --git a/srook/config/feature/current_function.hpp b/srook/config/feature/current_function.hpp index c86bb6a..8dd86eb 100644 --- a/srook/config/feature/current_function.hpp +++ b/srook/config/feature/current_function.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_CURRENT_FUNCTION_HPP #define INCLUDED_SROOK_CONFIG_CURRENT_FUNCTION_HPP diff --git a/srook/config/feature/decltype.hpp b/srook/config/feature/decltype.hpp index 73194d7..cb1ede0 100644 --- a/srook/config/feature/decltype.hpp +++ b/srook/config/feature/decltype.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_DECLTYPE_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_DECLTYPE_HPP diff --git a/srook/config/feature/deduced_typename.hpp b/srook/config/feature/deduced_typename.hpp index 5b48e13..cf77a91 100644 --- a/srook/config/feature/deduced_typename.hpp +++ b/srook/config/feature/deduced_typename.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_DEDUCED_TYPENAME_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_DEDUCED_TYPENAME_HPP diff --git a/srook/config/feature/default.hpp b/srook/config/feature/default.hpp index 4da300a..3d7e6c2 100644 --- a/srook/config/feature/default.hpp +++ b/srook/config/feature/default.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_DEFAULT_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_DEFAULT_HPP #include diff --git a/srook/config/feature/delete.hpp b/srook/config/feature/delete.hpp index f62ceb8..fa1353a 100644 --- a/srook/config/feature/delete.hpp +++ b/srook/config/feature/delete.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDE_SROOK_CONFIG_FEATURE_DELETE_HPP #define INCLUDE_SROOK_CONFIG_FEATURE_DELETE_HPP diff --git a/srook/config/feature/enum_attr.hpp b/srook/config/feature/enum_attr.hpp index 32ed819..03410b4 100644 --- a/srook/config/feature/enum_attr.hpp +++ b/srook/config/feature/enum_attr.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_ENUM_ATTR_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_ENUM_ATTR_HPP diff --git a/srook/config/feature/exception.hpp b/srook/config/feature/exception.hpp index c2d1997..8c8e6a8 100644 --- a/srook/config/feature/exception.hpp +++ b/srook/config/feature/exception.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_EXCEPTION_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_EXCEPTION_HPP diff --git a/srook/config/feature/explicit.hpp b/srook/config/feature/explicit.hpp index d1445ee..a7e45f1 100644 --- a/srook/config/feature/explicit.hpp +++ b/srook/config/feature/explicit.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_EXPLICIT_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_EXPLICIT_HPP diff --git a/srook/config/feature/final.hpp b/srook/config/feature/final.hpp index cc0fea9..8af0d07 100644 --- a/srook/config/feature/final.hpp +++ b/srook/config/feature/final.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_FINAL_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_FINAL_HPP diff --git a/srook/config/feature/fixed_for.hpp b/srook/config/feature/fixed_for.hpp index a041eff..daaeb33 100644 --- a/srook/config/feature/fixed_for.hpp +++ b/srook/config/feature/fixed_for.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_FIXED_FOR_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_FIXED_FOR_HPP diff --git a/srook/config/feature/if_constexpr.hpp b/srook/config/feature/if_constexpr.hpp index b50b633..10afbb2 100644 --- a/srook/config/feature/if_constexpr.hpp +++ b/srook/config/feature/if_constexpr.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_IF_CONSTEXPR_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_IF_CONSTEXPR_HPP diff --git a/srook/config/feature/nested_namespace.hpp b/srook/config/feature/nested_namespace.hpp index c5631f1..e420fc6 100644 --- a/srook/config/feature/nested_namespace.hpp +++ b/srook/config/feature/nested_namespace.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_NESTED_NAMESPACE_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_NESTED_NAMESPACE_HPP diff --git a/srook/config/feature/noexcept.hpp b/srook/config/feature/noexcept.hpp index c5d3ff4..a114134 100644 --- a/srook/config/feature/noexcept.hpp +++ b/srook/config/feature/noexcept.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_NOEXCEPT_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_NOEXCEPT_HPP #include diff --git a/srook/config/feature/override.hpp b/srook/config/feature/override.hpp index a57f254..2293b5e 100644 --- a/srook/config/feature/override.hpp +++ b/srook/config/feature/override.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_OVERRIDE_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_OVERRIDE_HPP diff --git a/srook/config/feature/static_assert.hpp b/srook/config/feature/static_assert.hpp index 24645b8..2d34bd7 100644 --- a/srook/config/feature/static_assert.hpp +++ b/srook/config/feature/static_assert.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_STATIC_ASSERT_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_STATIC_ASSERT_HPP diff --git a/srook/config/feature/strong_enum.hpp b/srook/config/feature/strong_enum.hpp index e07851f..166956c 100644 --- a/srook/config/feature/strong_enum.hpp +++ b/srook/config/feature/strong_enum.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_STRONG_ENUM_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_STRONG_ENUM_HPP diff --git a/srook/config/feature/thread_local.hpp b/srook/config/feature/thread_local.hpp index 7cf17af..6943b2f 100644 --- a/srook/config/feature/thread_local.hpp +++ b/srook/config/feature/thread_local.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_FEATURE_THREAD_LOCAL_HPP #define INCLUDED_SROOK_CONFIG_FEATURE_THREAD_LOCAL_HPP diff --git a/srook/config/inline_variable.hpp b/srook/config/inline_variable.hpp index 97ad5e3..018e963 100644 --- a/srook/config/inline_variable.hpp +++ b/srook/config/inline_variable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_INLINE_VARIABLE_HPP #define INCLUDED_SROOK_CONFIG_INLINE_VARIABLE_HPP #include diff --git a/srook/config/libraries/type_traits/index_sequence.hpp b/srook/config/libraries/type_traits/index_sequence.hpp index c9f39e3..f142ee5 100644 --- a/srook/config/libraries/type_traits/index_sequence.hpp +++ b/srook/config/libraries/type_traits/index_sequence.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_LIBRARIES_TYPE_TRAITS_INDEX_SEQUENCE_HPP #define INCLUDED_SROOK_CONFIG_LIBRARIES_TYPE_TRAITS_INDEX_SEQUENCE_HPP diff --git a/srook/config/noexcept_detection.hpp b/srook/config/noexcept_detection.hpp index 392a8e9..d13b044 100644 --- a/srook/config/noexcept_detection.hpp +++ b/srook/config/noexcept_detection.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_NOEXCEPT_DETECTION_HPP #define INCLUDED_SROOK_CONFIG_NOEXCEPT_DETECTION_HPP #include diff --git a/srook/config/nullptr.hpp b/srook/config/nullptr.hpp index a143bdd..ae6c09a 100644 --- a/srook/config/nullptr.hpp +++ b/srook/config/nullptr.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_NULLPTR_T #define INCLUDED_SROOK_CONFIG_NULLPTR_T diff --git a/srook/config/require.hpp b/srook/config/require.hpp index aaf2a40..f9d6888 100644 --- a/srook/config/require.hpp +++ b/srook/config/require.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_REQUIRE_HPP #define INCLUDED_SROOK_CONFIG_REQUIRE_HPP #include diff --git a/srook/config/require/require_core.hpp b/srook/config/require/require_core.hpp index dd6bf1f..d0f26a3 100644 --- a/srook/config/require/require_core.hpp +++ b/srook/config/require/require_core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_REQUIRE_REQUIRE_CORE_HPP #define INCLUDED_SROOK_CONFIG_REQUIRE_REQUIRE_CORE_HPP #include diff --git a/srook/config/user_config.hpp b/srook/config/user_config.hpp index 0b383fd..ad79278 100644 --- a/srook/config/user_config.hpp +++ b/srook/config/user_config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONFIG_USER_CONFIG_HPP #define INCLUDED_SROOK_CONFIG_USER_CONFIG_HPP diff --git a/srook/container/detail/config_begin.hpp b/srook/container/detail/config_begin.hpp index 5c6cecd..1958829 100644 --- a/srook/container/detail/config_begin.hpp +++ b/srook/container/detail/config_begin.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONTAINER_DETAIL_CONFIG_BEGIN_HPP #define INCLUDED_SROOK_CONTAINER_DETAIL_CONFIG_BEGIN_HPP diff --git a/srook/container/detail/config_end.hpp b/srook/container/detail/config_end.hpp index 5ca683c..712f90f 100644 --- a/srook/container/detail/config_end.hpp +++ b/srook/container/detail/config_end.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONTAINER_DETAIL_CONFIG_END_HPP #define INCLUDED_SROOK_CONTAINER_DETAIL_CONFIG_END_HPP diff --git a/srook/container/detail/list_node.hpp b/srook/container/detail/list_node.hpp index f7dae2c..1058b5c 100644 --- a/srook/container/detail/list_node.hpp +++ b/srook/container/detail/list_node.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONTAINER_DETAIL_LIST_NODE_HPP #define INCLUDED_SROOK_CONTAINER_DETAIL_LIST_NODE_HPP diff --git a/srook/container/detail/list_node/core.hpp b/srook/container/detail/list_node/core.hpp index 124cec1..69960f8 100644 --- a/srook/container/detail/list_node/core.hpp +++ b/srook/container/detail/list_node/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONTAINER_DETAIL_LIST_NODE_CORE_HPP #define INCLUDED_SROOK_CONTAINER_DETAIL_LIST_NODE_CORE_HPP diff --git a/srook/container/detail/list_node/list_node_traits.hpp b/srook/container/detail/list_node/list_node_traits.hpp index b3456df..ce3f428 100644 --- a/srook/container/detail/list_node/list_node_traits.hpp +++ b/srook/container/detail/list_node/list_node_traits.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONTAINER_DETAIL_LIST_NODE_LIST_NODE_TRAITS_HPP #define INCLUDED_SROOK_CONTAINER_DETAIL_LIST_NODE_LIST_NODE_TRAITS_HPP diff --git a/srook/container/polymorphic_allocate_containers.hpp b/srook/container/polymorphic_allocate_containers.hpp index bea6cce..6020339 100644 --- a/srook/container/polymorphic_allocate_containers.hpp +++ b/srook/container/polymorphic_allocate_containers.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONTAINER_POLYMORPHIC_ALLOCATE_CONTAINERS_HPP #define INCLUDED_SROOK_CONTAINER_POLYMORPHIC_ALLOCATE_CONTAINERS_HPP diff --git a/srook/cstddef/byte.hpp b/srook/cstddef/byte.hpp index 35407ad..0874946 100644 --- a/srook/cstddef/byte.hpp +++ b/srook/cstddef/byte.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CSTDDEF_BYTE_HPP #define INCLUDED_SROOK_CSTDDEF_BYTE_HPP #include diff --git a/srook/cstdfloat.hpp b/srook/cstdfloat.hpp index 393cdeb..cf49286 100644 --- a/srook/cstdfloat.hpp +++ b/srook/cstdfloat.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CSTDFLOAT_HPP #define INCLUDED_SROOK_CSTDFLOAT_HPP diff --git a/srook/cstdfloat/specialized_limits.hpp b/srook/cstdfloat/specialized_limits.hpp index a802035..e56fa0e 100644 --- a/srook/cstdfloat/specialized_limits.hpp +++ b/srook/cstdfloat/specialized_limits.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CSTDFLOAT_SPECIALIZED_LIMITS_HPP #define INCLUDED_SROOK_CSTDFLOAT_SPECIALIZED_LIMITS_HPP diff --git a/srook/cstdfloat/type.hpp b/srook/cstdfloat/type.hpp index 1134c1d..891314a 100644 --- a/srook/cstdfloat/type.hpp +++ b/srook/cstdfloat/type.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CSTDFLOAT_TYPE_HPP #define INCLUDED_SROOK_CSTDFLOAT_TYPE_HPP diff --git a/srook/cstdint.hpp b/srook/cstdint.hpp index c6baad0..303877f 100644 --- a/srook/cstdint.hpp +++ b/srook/cstdint.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CSTDINT_HPP #define INCLUDED_SROOK_CSTDINT_HPP diff --git a/srook/cstring/avx/algorithm/memcpy/detail/config.hpp b/srook/cstring/avx/algorithm/memcpy/detail/config.hpp index 534287b..2918c95 100644 --- a/srook/cstring/avx/algorithm/memcpy/detail/config.hpp +++ b/srook/cstring/avx/algorithm/memcpy/detail/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CSTRING_AVX_MEMCPY_CONFIG_DETAIL_HPP #define INCLUDED_SROOK_CSTRING_AVX_MEMCPY_CONFIG_DETAIL_HPP diff --git a/srook/cstring/avx/algorithm/memcpy/detail/core.hpp b/srook/cstring/avx/algorithm/memcpy/detail/core.hpp index cfe8c5e..6cd377a 100644 --- a/srook/cstring/avx/algorithm/memcpy/detail/core.hpp +++ b/srook/cstring/avx/algorithm/memcpy/detail/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CSTRING_AVX_MEMCPY_DETAIL_CORE_HPP #define INCLUDED_SROOK_CSTRING_AVX_MEMCPY_DETAIL_CORE_HPP diff --git a/srook/cstring/avx/algorithm/memcpy/memcpy.hpp b/srook/cstring/avx/algorithm/memcpy/memcpy.hpp index e169ddc..bcd7258 100644 --- a/srook/cstring/avx/algorithm/memcpy/memcpy.hpp +++ b/srook/cstring/avx/algorithm/memcpy/memcpy.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CSTRING_AVX_ALGORITHM_MEMCPY_MEMCPY_HPP #define INCLUDED_SROOK_CSTRING_AVX_ALGORITHM_MEMCPY_MEMCPY_HPP diff --git a/srook/cstring/avx/has_intel_knl_features.hpp b/srook/cstring/avx/has_intel_knl_features.hpp index 9a65720..35bf19a 100644 --- a/srook/cstring/avx/has_intel_knl_features.hpp +++ b/srook/cstring/avx/has_intel_knl_features.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CSTRING_AVX_HAS_INTEL_KNL_FEATURES_HPP #define INCLUDED_SROOK_CSTRING_AVX_HAS_INTEL_KNL_FEATURES_HPP diff --git a/srook/cstring/memcpy.hpp b/srook/cstring/memcpy.hpp index c75b8a0..587772d 100644 --- a/srook/cstring/memcpy.hpp +++ b/srook/cstring/memcpy.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_CSTRING_MEMCPY_HPP #define INCLUDED_CSTRING_MEMCPY_HPP diff --git a/srook/cstring/secure_zero.hpp b/srook/cstring/secure_zero.hpp index 879ebbe..aecebda 100644 --- a/srook/cstring/secure_zero.hpp +++ b/srook/cstring/secure_zero.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CSTRING_SECURE_ZERO_HPP #define INCLUDED_SROOK_CSTRING_SECURE_ZERO_HPP diff --git a/srook/cstring/strlen.hpp b/srook/cstring/strlen.hpp index f723e2c..d54da98 100644 --- a/srook/cstring/strlen.hpp +++ b/srook/cstring/strlen.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CSTRING_STRLEN_HPP #define INCLUDED_SROOK_CSTRING_STRLEN_HPP diff --git a/srook/cwchar/swprintf.hpp b/srook/cwchar/swprintf.hpp index bdfc95e..03f04ae 100644 --- a/srook/cwchar/swprintf.hpp +++ b/srook/cwchar/swprintf.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CWCHAR_SWPRINTF_HPP #define INCLUDED_SROOK_CWCHAR_SWPRINTF_HPP diff --git a/srook/cxx17/any.hpp b/srook/cxx17/any.hpp index b2feb85..4958847 100644 --- a/srook/cxx17/any.hpp +++ b/srook/cxx17/any.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_ANY_HPP #define INCLUDED_SROOK_CXX17_ANY_HPP #include diff --git a/srook/cxx17/mpl/any_pack.hpp b/srook/cxx17/mpl/any_pack.hpp index fc7bf06..5acb494 100644 --- a/srook/cxx17/mpl/any_pack.hpp +++ b/srook/cxx17/mpl/any_pack.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_HPP diff --git a/srook/cxx17/mpl/any_pack/algorithm/at.hpp b/srook/cxx17/mpl/any_pack/algorithm/at.hpp index ec21383..94cf006 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/at.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/at.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_AT_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_AT_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/binary_search.hpp b/srook/cxx17/mpl/any_pack/algorithm/binary_search.hpp index da8d07a..2001bab 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/binary_search.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/binary_search.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_BINARY_SEARCH_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_BINARY_SEARCH_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/concat.hpp b/srook/cxx17/mpl/any_pack/algorithm/concat.hpp index bd65cf6..f49374d 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/concat.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/concat.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_CONCAT_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_CONCAT_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/count.hpp b/srook/cxx17/mpl/any_pack/algorithm/count.hpp index 0cbcae5..658a6df 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/count.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/count.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_COUNT_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_COUNT_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/count_if.hpp b/srook/cxx17/mpl/any_pack/algorithm/count_if.hpp index 887dbdf..770d617 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/count_if.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/count_if.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_COUNT_IF_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_COUNT_IF_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/equal.hpp b/srook/cxx17/mpl/any_pack/algorithm/equal.hpp index 51175d0..6f41bdc 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/equal.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/equal.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_EQUAL_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_EQUAL_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/erase_all_elements.hpp b/srook/cxx17/mpl/any_pack/algorithm/erase_all_elements.hpp index 0fe9128..58b0ed6 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/erase_all_elements.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/erase_all_elements.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_ERASE_ALL_ELEMENTS_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_ERASE_ALL_ELEMENTS_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/erase_at.hpp b/srook/cxx17/mpl/any_pack/algorithm/erase_at.hpp index 73d2e1a..c71fb23 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/erase_at.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/erase_at.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_ERASE_AT_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_ERASE_AT_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/erase_elements.hpp b/srook/cxx17/mpl/any_pack/algorithm/erase_elements.hpp index 800d22f..e3b81e0 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/erase_elements.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/erase_elements.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_ERASE_ELEMENTS_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_ERASE_ELEMENTS_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/erase_if_all_elements.hpp b/srook/cxx17/mpl/any_pack/algorithm/erase_if_all_elements.hpp index 6a3c49c..927bfe8 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/erase_if_all_elements.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/erase_if_all_elements.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_ERASE_IF_ALL_ELEMENTS_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_ERASE_IF_ALL_ELEMENTS_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/erase_if_elements.hpp b/srook/cxx17/mpl/any_pack/algorithm/erase_if_elements.hpp index 51f4ef1..bcbb7b8 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/erase_if_elements.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/erase_if_elements.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_ERASE_IF_ELEMENTS_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_ERASE_IF_ELEMENTS_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/filter.hpp b/srook/cxx17/mpl/any_pack/algorithm/filter.hpp index f9ce760..91538bb 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/filter.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/filter.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_FILTER_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_FILTER_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/find_if.hpp b/srook/cxx17/mpl/any_pack/algorithm/find_if.hpp index 17332d1..63596e7 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/find_if.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/find_if.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_FIND_IF_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_FIND_IF_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/find_index.hpp b/srook/cxx17/mpl/any_pack/algorithm/find_index.hpp index adfff94..aa1811a 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/find_index.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/find_index.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_FIND_INDEX_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_FIND_INDEX_HPP diff --git a/srook/cxx17/mpl/any_pack/algorithm/first.hpp b/srook/cxx17/mpl/any_pack/algorithm/first.hpp index 856a22a..f2429b5 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/first.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/first.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_FIRST_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_FIRST_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/for.hpp b/srook/cxx17/mpl/any_pack/algorithm/for.hpp index 2c0ec59..b39059c 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/for.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/for.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_FOR_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_FOR_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/for_conditional.hpp b/srook/cxx17/mpl/any_pack/algorithm/for_conditional.hpp index f592bd8..fbf1f4b 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/for_conditional.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/for_conditional.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_FOR_CONDITIONAL_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_FOR_CONDITIONAL_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/for_type.hpp b/srook/cxx17/mpl/any_pack/algorithm/for_type.hpp index e4db858..89ddf2a 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/for_type.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/for_type.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_FOR_TYPE_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_FOR_TYPE_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/for_type_conditional.hpp b/srook/cxx17/mpl/any_pack/algorithm/for_type_conditional.hpp index 642924e..3056129 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/for_type_conditional.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/for_type_conditional.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_FOR_TYPE_CONDITIONAL_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_FOR_TYPE_CONDITIONAL_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/last.hpp b/srook/cxx17/mpl/any_pack/algorithm/last.hpp index d60086f..7ea37cf 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/last.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/last.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_LAST_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_LAST_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/make_any_pack.hpp b/srook/cxx17/mpl/any_pack/algorithm/make_any_pack.hpp index 28e239f..0eb6e6a 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/make_any_pack.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/make_any_pack.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_MAKE_ANY_PACK_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_MAKE_ANY_PACK_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/make_index_sequence.hpp b/srook/cxx17/mpl/any_pack/algorithm/make_index_sequence.hpp index bd9b5d9..da11d5b 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/make_index_sequence.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/make_index_sequence.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_MAKE_INDEX_SEQUENCE_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_MAKE_INDEX_SEQUENCE_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/partial_head.hpp b/srook/cxx17/mpl/any_pack/algorithm/partial_head.hpp index 2f6dd5c..28e3e71 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/partial_head.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/partial_head.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_PARTIAL_HEAD_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_PARTIAL_HEAD_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/partial_tail.hpp b/srook/cxx17/mpl/any_pack/algorithm/partial_tail.hpp index 287ce03..dcefab4 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/partial_tail.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/partial_tail.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_PARTIAL_TAIL_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_PARTIAL_TAIL_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/pop_back.hpp b/srook/cxx17/mpl/any_pack/algorithm/pop_back.hpp index 8c0535d..7e2e50f 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/pop_back.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/pop_back.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_POP_BACK_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_POP_BACK_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/pop_front.hpp b/srook/cxx17/mpl/any_pack/algorithm/pop_front.hpp index b2d83b2..062e387 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/pop_front.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/pop_front.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_POP_FRONT_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_POP_FRONT_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/replace_elements.hpp b/srook/cxx17/mpl/any_pack/algorithm/replace_elements.hpp index 2bbb768..af7075d 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/replace_elements.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/replace_elements.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_REPLACE_ELEMENTS_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_REPLACE_ELEMENTS_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/reverse.hpp b/srook/cxx17/mpl/any_pack/algorithm/reverse.hpp index 31c7c5f..1ca0271 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/reverse.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/reverse.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_REVERSE_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_REVERSE_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/sort.hpp b/srook/cxx17/mpl/any_pack/algorithm/sort.hpp index d598586..60ea3c7 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/sort.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_SORT_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_SORT_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/transfer.hpp b/srook/cxx17/mpl/any_pack/algorithm/transfer.hpp index 86d1c21..f1c753e 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/transfer.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/transfer.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_TRANSFER_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_TRANSFER_HPP #include diff --git a/srook/cxx17/mpl/any_pack/algorithm/unique.hpp b/srook/cxx17/mpl/any_pack/algorithm/unique.hpp index 95862f0..df920ed 100644 --- a/srook/cxx17/mpl/any_pack/algorithm/unique.hpp +++ b/srook/cxx17/mpl/any_pack/algorithm/unique.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_UNIQUE_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_UNIQUE_HPP #include diff --git a/srook/cxx17/mpl/any_pack/math/make_costable.hpp b/srook/cxx17/mpl/any_pack/math/make_costable.hpp index f9adf4f..1a86a4f 100644 --- a/srook/cxx17/mpl/any_pack/math/make_costable.hpp +++ b/srook/cxx17/mpl/any_pack/math/make_costable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MATH_MAKE_COSINE_TABLE_HPP #define INCLUDED_SROOK_CXX17_MATH_MAKE_COSINE_TABLE_HPP diff --git a/srook/cxx17/mpl/any_pack/random/engines/Xorshift.hpp b/srook/cxx17/mpl/any_pack/random/engines/Xorshift.hpp index 00bcd09..e334933 100644 --- a/srook/cxx17/mpl/any_pack/random/engines/Xorshift.hpp +++ b/srook/cxx17/mpl/any_pack/random/engines/Xorshift.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_RANDOM_XOR_SHIFT_HPP #define INCLUDED_SROOK_CXX17_MPL_RANDOM_XOR_SHIFT_HPP #include diff --git a/srook/cxx17/mpl/any_pack/random/engines/linear_congruential.hpp b/srook/cxx17/mpl/any_pack/random/engines/linear_congruential.hpp index 2beab52..1d17494 100644 --- a/srook/cxx17/mpl/any_pack/random/engines/linear_congruential.hpp +++ b/srook/cxx17/mpl/any_pack/random/engines/linear_congruential.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_RANDOM_LINEAR_CONGRUENTIAL_HPP #define INCLUDED_SROOK_CXX17_MPL_RANDOM_LINEAR_CONGRUENTIAL_HPP #include diff --git a/srook/cxx17/mpl/any_pack/random/engines/mersenne_twister.hpp b/srook/cxx17/mpl/any_pack/random/engines/mersenne_twister.hpp index 8b41d87..7303ff6 100644 --- a/srook/cxx17/mpl/any_pack/random/engines/mersenne_twister.hpp +++ b/srook/cxx17/mpl/any_pack/random/engines/mersenne_twister.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_RANDOM_MERSENNE_TWISTER_HPP #define INCLUDED_SROOK_CXX17_MPL_RANDOM_MERSENNE_TWISTER_HPP #include diff --git a/srook/cxx17/mpl/any_pack/random/engines/subtract_with_carry.hpp b/srook/cxx17/mpl/any_pack/random/engines/subtract_with_carry.hpp index ef55c3e..288588b 100644 --- a/srook/cxx17/mpl/any_pack/random/engines/subtract_with_carry.hpp +++ b/srook/cxx17/mpl/any_pack/random/engines/subtract_with_carry.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_RANDOM_SUBTRACT_CARRY_ENGINE_HPP #define INCLUDED_SROOK_CXX17_MPL_RANDOM_SUBTRACT_CARRY_ENGINE_HPP #include diff --git a/srook/cxx17/mpl/any_pack/random/maker/make_random_sequence.hpp b/srook/cxx17/mpl/any_pack/random/maker/make_random_sequence.hpp index cb0db7f..fda27a6 100644 --- a/srook/cxx17/mpl/any_pack/random/maker/make_random_sequence.hpp +++ b/srook/cxx17/mpl/any_pack/random/maker/make_random_sequence.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ANY_PACK_RANDOM_MAKER_HPP #define INCLUDED_SROOK_CXX17_MPL_ANY_PACK_RANDOM_MAKER_HPP diff --git a/srook/cxx17/mpl/any_pack/random/uniform_distribution/uniform_int_distribution.hpp b/srook/cxx17/mpl/any_pack/random/uniform_distribution/uniform_int_distribution.hpp index 90b72f4..f3cd5d9 100644 --- a/srook/cxx17/mpl/any_pack/random/uniform_distribution/uniform_int_distribution.hpp +++ b/srook/cxx17/mpl/any_pack/random/uniform_distribution/uniform_int_distribution.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_ANY_PACK_RANDOM_UNIFORM_INT_DISTRIBUTION_HPP #define INCLUDED_SROOK_CXX17_ANY_PACK_RANDOM_UNIFORM_INT_DISTRIBUTION_HPP diff --git a/srook/cxx17/mpl/any_pack/run_length/run_length.hpp b/srook/cxx17/mpl/any_pack/run_length/run_length.hpp index 2bbd8f4..2338a72 100644 --- a/srook/cxx17/mpl/any_pack/run_length/run_length.hpp +++ b/srook/cxx17/mpl/any_pack/run_length/run_length.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_RUN_LENGTH_HPP #define INCLUDED_SROOK_CXX17_MPL_RUN_LENGTH_HPP #include diff --git a/srook/cxx17/mpl/array_view.hpp b/srook/cxx17/mpl/array_view.hpp index 9ed333d..7a364b5 100644 --- a/srook/cxx17/mpl/array_view.hpp +++ b/srook/cxx17/mpl/array_view.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX17_MPL_ARRAY_VIEW_HPP #define INCLUDED_SROOK_CXX17_MPL_ARRAY_VIEW_HPP diff --git a/srook/cxx17/mpl/huffman/huffman_encode.hpp b/srook/cxx17/mpl/huffman/huffman_encode.hpp index 516b11b..3ee03b8 100644 --- a/srook/cxx17/mpl/huffman/huffman_encode.hpp +++ b/srook/cxx17/mpl/huffman/huffman_encode.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_HUFFMAN_CODING_HPP #define INCLUDED_SROOK_MPL_HUFFMAN_CODING_HPP #include diff --git a/srook/cxx20/concepts.hpp b/srook/cxx20/concepts.hpp index 9e444f9..2d68959 100644 --- a/srook/cxx20/concepts.hpp +++ b/srook/cxx20/concepts.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX20_CONCEPTS_HPP #define INCLUDED_SROOK_CXX20_CONCEPTS_HPP diff --git a/srook/cxx20/concepts/iterator.hpp b/srook/cxx20/concepts/iterator.hpp index 6f3809f..e667824 100644 --- a/srook/cxx20/concepts/iterator.hpp +++ b/srook/cxx20/concepts/iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX20_CONCEPTS_ITERATOR_HPP #define INCLUDED_SROOK_CXX20_CONCEPTS_ITERATOR_HPP diff --git a/srook/cxx20/concepts/random.hpp b/srook/cxx20/concepts/random.hpp index f261dce..1cb1a63 100644 --- a/srook/cxx20/concepts/random.hpp +++ b/srook/cxx20/concepts/random.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CXX20_CONCEPTS_RANDOM_HPP #define INCLUDED_SROOK_CXX20_CONCEPTS_RANDOM_HPP diff --git a/srook/execution.hpp b/srook/execution.hpp index 4d46642..3fc33d8 100644 --- a/srook/execution.hpp +++ b/srook/execution.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_EXECUTION_HPP #define INCLUDED_SROOK_EXECUTION_HPP diff --git a/srook/execution/config.hpp b/srook/execution/config.hpp index 38b8db4..6725de5 100644 --- a/srook/execution/config.hpp +++ b/srook/execution/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_EXECUTION_CONFIG_HPP #define INCLUDED_SROOK_EXECUTION_CONFIG_HPP diff --git a/srook/execution/is_execution_policy.hpp b/srook/execution/is_execution_policy.hpp index 9d76e2c..ef8228f 100644 --- a/srook/execution/is_execution_policy.hpp +++ b/srook/execution/is_execution_policy.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_EXECUTION_IS_EXECUTION_POLICY_HPP #define INCLUDED_SROOK_EXECUTION_IS_EXECUTION_POLICY_HPP diff --git a/srook/execution/policies.hpp b/srook/execution/policies.hpp index eb98400..306e51b 100644 --- a/srook/execution/policies.hpp +++ b/srook/execution/policies.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_EXECUTION_POLICIES_HPP #define INCLUDED_SROOK_EXECUTION_POLICIES_HPP diff --git a/srook/expected.hpp b/srook/expected.hpp index 4772247..4826f79 100644 --- a/srook/expected.hpp +++ b/srook/expected.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_EXPECTED_HPP #define INCLUDED_SROOK_EXPECTED_HPP diff --git a/srook/expected/expected.hpp b/srook/expected/expected.hpp index 70cee87..76d9865 100644 --- a/srook/expected/expected.hpp +++ b/srook/expected/expected.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_EXPECTED_EXPECTED_HPP #define INCLUDED_SROOK_EXPECTED_EXPECTED_HPP diff --git a/srook/expected/unexpected.hpp b/srook/expected/unexpected.hpp index 95b46bf..b7d15af 100644 --- a/srook/expected/unexpected.hpp +++ b/srook/expected/unexpected.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_EXPECTED_UNEXPECTED_HPP #define INCLUDED_SROOK_EXPECTED_UNEXPECTED_HPP diff --git a/srook/experimental/is_iterator.hpp b/srook/experimental/is_iterator.hpp index 91cf8f7..2b2c973 100644 --- a/srook/experimental/is_iterator.hpp +++ b/srook/experimental/is_iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDE_SROOK_TYPE_TRAITS_IS_ITERATOR #define INCLUDE_SROOK_TYPE_TRAITS_IS_ITERATOR #include diff --git a/srook/functional.hpp b/srook/functional.hpp index 7ad2118..f2a150a 100644 --- a/srook/functional.hpp +++ b/srook/functional.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_FUNCTIONAL_HPP #define INCLUDED_SROOK_FUNCTIONAL_HPP diff --git a/srook/functional/invoke.hpp b/srook/functional/invoke.hpp index 4c80b8b..435e6ca 100644 --- a/srook/functional/invoke.hpp +++ b/srook/functional/invoke.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_FUNCTIONAL_INVOKE_HPP #define INCLUDED_SROOK_FUNCTIONAL_INVOKE_HPP #include diff --git a/srook/functional/not_fn.hpp b/srook/functional/not_fn.hpp index 27f8713..e20545b 100644 --- a/srook/functional/not_fn.hpp +++ b/srook/functional/not_fn.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_FUNCTIONAL_NOT_FN_HPP #define INCLUDED_SROOK_FUNCTIONAL_NOT_FN_HPP diff --git a/srook/functional/op.hpp b/srook/functional/op.hpp index 4e19f8d..d9c0e3b 100644 --- a/srook/functional/op.hpp +++ b/srook/functional/op.hpp @@ -1,5 +1,5 @@ // Inspired by p0051 -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_FUNCTIONAL_OP_HPP #define INCLUDED_SROOK_FUNCTIONAL_OP_HPP diff --git a/srook/functional/overload.hpp b/srook/functional/overload.hpp index fb0e6f5..43004be 100644 --- a/srook/functional/overload.hpp +++ b/srook/functional/overload.hpp @@ -1,5 +1,5 @@ // Inspired by p0051 -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_FUNCTIONAL_OVERLOAD_HPP #define INCLUDED_SROOK_FUNCTIONAL_OVERLOAD_HPP diff --git a/srook/hash.hpp b/srook/hash.hpp index 1104571..90fbf66 100644 --- a/srook/hash.hpp +++ b/srook/hash.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_HASH_HPP #define INCLUDED_SROOK_HASH_HPP diff --git a/srook/hash/murmur3.hpp b/srook/hash/murmur3.hpp index a5bcc1b..26db66c 100644 --- a/srook/hash/murmur3.hpp +++ b/srook/hash/murmur3.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_HASH_MURMUR3_HPP #define INCLUDED_SROOK_HASH_MURMUR3_HPP diff --git a/srook/hash/murmur3/detail/murmur3_impl.hpp b/srook/hash/murmur3/detail/murmur3_impl.hpp index 22d72c0..50f55ed 100644 --- a/srook/hash/murmur3/detail/murmur3_impl.hpp +++ b/srook/hash/murmur3/detail/murmur3_impl.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_HASH_MURMUR3_DETAIL_MURMUR3_IMPL_HPP #define INCLUDED_SROOK_HASH_MURMUR3_DETAIL_MURMUR3_IMPL_HPP diff --git a/srook/hash/murmur3/murmur3_hash.hpp b/srook/hash/murmur3/murmur3_hash.hpp index db66bb6..5768380 100644 --- a/srook/hash/murmur3/murmur3_hash.hpp +++ b/srook/hash/murmur3/murmur3_hash.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_HASH_MURMUR3_MURMUR3_HASH_HPP #define INCLUDED_SROOK_HASH_MURMUR3_MURMUR3_HASH_HPP diff --git a/srook/hash/sha2.hpp b/srook/hash/sha2.hpp index cf3f0d6..0f0bac4 100644 --- a/srook/hash/sha2.hpp +++ b/srook/hash/sha2.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_HASH_SHA2_HPP #define INCLUDED_SROOK_HASH_SHA2_HPP diff --git a/srook/hash/sha2/detail/config.hpp b/srook/hash/sha2/detail/config.hpp index 57fa013..5b9bc9e 100644 --- a/srook/hash/sha2/detail/config.hpp +++ b/srook/hash/sha2/detail/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_HASH_SHA_DETAIL_CONFIG_HPP #define INCLUDED_SROOK_HASH_SHA_DETAIL_CONFIG_HPP diff --git a/srook/hash/sha2/detail/is_callable_begin_end.hpp b/srook/hash/sha2/detail/is_callable_begin_end.hpp index 8c403fc..57942a9 100644 --- a/srook/hash/sha2/detail/is_callable_begin_end.hpp +++ b/srook/hash/sha2/detail/is_callable_begin_end.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_HASH_SHA_DETAIL_IS_CALLABLE_BEGIN_END_HPP #define INCLUDED_SROOK_HASH_SHA_DETAIL_IS_CALLABLE_BEGIN_END_HPP diff --git a/srook/hash/sha2/detail/sha2_traits.hpp b/srook/hash/sha2/detail/sha2_traits.hpp index 5c4fb35..90f423a 100644 --- a/srook/hash/sha2/detail/sha2_traits.hpp +++ b/srook/hash/sha2/detail/sha2_traits.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_HASH_SHA_DETAIL_SHAX_TRAITS_HPP #define INCLUDED_SROOK_HASH_SHA_DETAIL_SHAX_TRAITS_HPP diff --git a/srook/hash/sha2/detail/sha2_util.hpp b/srook/hash/sha2/detail/sha2_util.hpp index 11025b3..b98a945 100644 --- a/srook/hash/sha2/detail/sha2_util.hpp +++ b/srook/hash/sha2/detail/sha2_util.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_HASH_SHA_DETAIL_SHAX_UTIL_HPP #define INCLUDED_SROOK_HASH_SHA_DETAIL_SHAX_UTIL_HPP diff --git a/srook/hash/sha2/detail/sum.hpp b/srook/hash/sha2/detail/sum.hpp index 3f12902..17c69f3 100644 --- a/srook/hash/sha2/detail/sum.hpp +++ b/srook/hash/sha2/detail/sum.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_HASH_SHA_DETAIL_SUM_HPP #define INCLUDED_SROOK_HASH_SHA_DETAIL_SUM_HPP diff --git a/srook/hash/sha2/hash_concept_style.hpp b/srook/hash/sha2/hash_concept_style.hpp index ea69045..ea48a1e 100644 --- a/srook/hash/sha2/hash_concept_style.hpp +++ b/srook/hash/sha2/hash_concept_style.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_HASH_SHA2_HASH_CONCEPT_STYLE_HPP #define INCLUDED_SROOK_HASH_SHA2_HASH_CONCEPT_STYLE_HPP diff --git a/srook/hash/sha2/sha2_impl.hpp b/srook/hash/sha2/sha2_impl.hpp index 67a685d..55db293 100644 --- a/srook/hash/sha2/sha2_impl.hpp +++ b/srook/hash/sha2/sha2_impl.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_HASH_SHA2_SHA2_IMPL_HPP #define INCLUDED_SROOK_HASH_SHA2_SHA2_IMPL_HPP diff --git a/srook/io.hpp b/srook/io.hpp index a5dc934..8d5b148 100644 --- a/srook/io.hpp +++ b/srook/io.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO_HPP #define INCLUDED_SROOK_IO_HPP diff --git a/srook/io/bifstream.hpp b/srook/io/bifstream.hpp index c4caa86..4df3d79 100644 --- a/srook/io/bifstream.hpp +++ b/srook/io/bifstream.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO_BIFSTREAM_HPP #define INCLUDED_SROOK_IO_BIFSTREAM_HPP diff --git a/srook/io/bofstream.hpp b/srook/io/bofstream.hpp index 7ed3dda..99399fb 100644 --- a/srook/io/bofstream.hpp +++ b/srook/io/bofstream.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO_BOFSTREAM_HPP #define INCLUDED_SROOK_IO_BOFSTREAM_HPP diff --git a/srook/io/fstream.hpp b/srook/io/fstream.hpp index 8aaf376..ad4e160 100644 --- a/srook/io/fstream.hpp +++ b/srook/io/fstream.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO_FSTREAM_HPP #define INCLUDED_SROOK_IO_FSTREAM_HPP diff --git a/srook/io/fstream/config.hpp b/srook/io/fstream/config.hpp index 47356df..e0add73 100644 --- a/srook/io/fstream/config.hpp +++ b/srook/io/fstream/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO_FSTREAM_CONFIG_HPP #define INCLUDED_SROOK_IO_FSTREAM_CONFIG_HPP #include diff --git a/srook/io/fstream/exception.hpp b/srook/io/fstream/exception.hpp index 338561e..22f52eb 100644 --- a/srook/io/fstream/exception.hpp +++ b/srook/io/fstream/exception.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO_FSTREAM_EXCEPTION #define INCLUDED_SROOK_IO_FSTREAM_EXCEPTION diff --git a/srook/io/fstream/fstream.hpp b/srook/io/fstream/fstream.hpp index 4493259..4efc3f3 100644 --- a/srook/io/fstream/fstream.hpp +++ b/srook/io/fstream/fstream.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO_FSTREAM_FSTREAM_HPP #define INCLUDED_SROOK_IO_FSTREAM_FSTREAM_HPP diff --git a/srook/io/fstream/ifstream.hpp b/srook/io/fstream/ifstream.hpp index 761fb1c..1ccd96b 100644 --- a/srook/io/fstream/ifstream.hpp +++ b/srook/io/fstream/ifstream.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO_FSTREAM_IFSTREAM_HPP #define INCLUDED_SROOK_IO_FSTREAM_IFSTREAM_HPP diff --git a/srook/io/fstream/ofstream.hpp b/srook/io/fstream/ofstream.hpp index a405cd8..92ddaa8 100644 --- a/srook/io/fstream/ofstream.hpp +++ b/srook/io/fstream/ofstream.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO_FSTREAM_OFSTREAM_HPP #define INCLUDED_SROOK_IO_FSTREAM_OFSTREAM_HPP diff --git a/srook/io2d/format/jpeg/decode.hpp b/srook/io2d/format/jpeg/decode.hpp index 0d5ebdf..ab0dddb 100644 --- a/srook/io2d/format/jpeg/decode.hpp +++ b/srook/io2d/format/jpeg/decode.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO2D_JPEG_DECODE_HPP #define INCLUDED_SROOK_IO2D_JPEG_DECODE_HPP diff --git a/srook/io2d/format/jpeg/encode.hpp b/srook/io2d/format/jpeg/encode.hpp index 6486b6a..107475e 100644 --- a/srook/io2d/format/jpeg/encode.hpp +++ b/srook/io2d/format/jpeg/encode.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO2D_JPEG_ENCODE_HPP #define INCLUDED_SROOK_IO2D_JPEG_ENCODE_HPP diff --git a/srook/io2d/third_party/opencv.hpp b/srook/io2d/third_party/opencv.hpp index 52efb64..2f36fe1 100644 --- a/srook/io2d/third_party/opencv.hpp +++ b/srook/io2d/third_party/opencv.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENCV_HPP #define INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENCV_HPP diff --git a/srook/io2d/third_party/opencv/algorithm.hpp b/srook/io2d/third_party/opencv/algorithm.hpp index 967d40b..bd9f92e 100644 --- a/srook/io2d/third_party/opencv/algorithm.hpp +++ b/srook/io2d/third_party/opencv/algorithm.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENCV_ALGORITHM_HPP #define INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENCV_ALGORITHM_HPP diff --git a/srook/io2d/third_party/opencv/algorithm/poisson.hpp b/srook/io2d/third_party/opencv/algorithm/poisson.hpp index 4544523..80d5fbc 100644 --- a/srook/io2d/third_party/opencv/algorithm/poisson.hpp +++ b/srook/io2d/third_party/opencv/algorithm/poisson.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENCV_ALGORITHM_POISSON_HPP #define INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENCV_ALGORITHM_POISSON_HPP diff --git a/srook/io2d/third_party/opengl.hpp b/srook/io2d/third_party/opengl.hpp index 2d51854..23cbb03 100644 --- a/srook/io2d/third_party/opengl.hpp +++ b/srook/io2d/third_party/opengl.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENGL_HPP #define INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENGL_HPP diff --git a/srook/io2d/third_party/opengl/glut.hpp b/srook/io2d/third_party/opengl/glut.hpp index 70d70f6..27c80d2 100644 --- a/srook/io2d/third_party/opengl/glut.hpp +++ b/srook/io2d/third_party/opengl/glut.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENGL_GLUT_HPP #define INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENGL_GLUT_HPP diff --git a/srook/io2d/third_party/opengl/glut/detail/config.hpp b/srook/io2d/third_party/opengl/glut/detail/config.hpp index dcc5ed7..40af7cd 100644 --- a/srook/io2d/third_party/opengl/glut/detail/config.hpp +++ b/srook/io2d/third_party/opengl/glut/detail/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENCV_GLUT_DETAIL_CONFIG_HPP #define INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENCV_GLUT_DETAIL_CONFIG_HPP diff --git a/srook/io2d/third_party/opengl/glut/detail/globalp.hpp b/srook/io2d/third_party/opengl/glut/detail/globalp.hpp index 1f19e60..b1a997b 100644 --- a/srook/io2d/third_party/opengl/glut/detail/globalp.hpp +++ b/srook/io2d/third_party/opengl/glut/detail/globalp.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENGL_GLUT_DETAIL_GLOBALP_HPP #define INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENGL_GLUT_DETAIL_GLOBALP_HPP diff --git a/srook/io2d/third_party/opengl/glut/utility.hpp b/srook/io2d/third_party/opengl/glut/utility.hpp index ccebd64..95a63e3 100644 --- a/srook/io2d/third_party/opengl/glut/utility.hpp +++ b/srook/io2d/third_party/opengl/glut/utility.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENGL_GLUT_UTILITY_HPP #define INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENGL_GLUT_UTILITY_HPP diff --git a/srook/io2d/third_party/opengl/glut/utility/painter.hpp b/srook/io2d/third_party/opengl/glut/utility/painter.hpp index 4ca9b99..29e912f 100644 --- a/srook/io2d/third_party/opengl/glut/utility/painter.hpp +++ b/srook/io2d/third_party/opengl/glut/utility/painter.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENCV_GLUT_UTILITY_PAINTER_HPP #define INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENCV_GLUT_UTILITY_PAINTER_HPP diff --git a/srook/io2d/third_party/opengl/glut/utility/params.hpp b/srook/io2d/third_party/opengl/glut/utility/params.hpp index 44ae4b6..439ed25 100644 --- a/srook/io2d/third_party/opengl/glut/utility/params.hpp +++ b/srook/io2d/third_party/opengl/glut/utility/params.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENGL_GLUT_UTILITY_PARAMS_HPP #define INCLUDED_SROOK_IO2D_THIRD_PARTY_OPENGL_GLUT_UTILITY_PARAMS_HPP diff --git a/srook/iterator.hpp b/srook/iterator.hpp index 1e3371a..db6d568 100644 --- a/srook/iterator.hpp +++ b/srook/iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_ITERATOR_HPP #define INCLUDED_ITERATOR_HPP #include diff --git a/srook/iterator/range_access/advance.hpp b/srook/iterator/range_access/advance.hpp index 05faac4..1fd0468 100644 --- a/srook/iterator/range_access/advance.hpp +++ b/srook/iterator/range_access/advance.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ITERATOR_ALGORITHM_ADVANCE_HPP #define INCLUDED_SROOK_ITERATOR_ALGORITHM_ADVANCE_HPP diff --git a/srook/iterator/range_access/begin_end.hpp b/srook/iterator/range_access/begin_end.hpp index ecd7a0d..cd1f918 100644 --- a/srook/iterator/range_access/begin_end.hpp +++ b/srook/iterator/range_access/begin_end.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ITERATOR_RANGE_ACCESS_BEGIN_END_HPP #define INCLUDED_SROOK_ITERATOR_RANGE_ACCESS_BEGIN_END_HPP diff --git a/srook/iterator/range_access/distance.hpp b/srook/iterator/range_access/distance.hpp index ba6bb59..b5050d8 100644 --- a/srook/iterator/range_access/distance.hpp +++ b/srook/iterator/range_access/distance.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ITERATOR_ALGORITHM_DISTANCE_HPP #define INCLUDED_SROOK_ITERATOR_ALGORITHM_DISTANCE_HPP diff --git a/srook/iterator/range_access/next.hpp b/srook/iterator/range_access/next.hpp index 46259bb..17e1035 100644 --- a/srook/iterator/range_access/next.hpp +++ b/srook/iterator/range_access/next.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ITERATOR_ALGORITHM_NEXT_HPP #define INCLUDED_SROOK_ITERATOR_ALGORITHM_NEXT_HPP diff --git a/srook/iterator/range_access/prev.hpp b/srook/iterator/range_access/prev.hpp index 2fafd92..b2e952d 100644 --- a/srook/iterator/range_access/prev.hpp +++ b/srook/iterator/range_access/prev.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ITERATOR_ALGORITHM_PREV_HPP #define INCLUDED_SROOK_ITERATOR_ALGORITHM_PREV_HPP diff --git a/srook/iterator/range_iterators.hpp b/srook/iterator/range_iterators.hpp index 364d6c0..677a810 100644 --- a/srook/iterator/range_iterators.hpp +++ b/srook/iterator/range_iterators.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_HPP #define INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_HPP diff --git a/srook/iterator/range_iterators/detail/advance.hpp b/srook/iterator/range_iterators/detail/advance.hpp index 1be867a..12de1a2 100644 --- a/srook/iterator/range_iterators/detail/advance.hpp +++ b/srook/iterator/range_iterators/detail/advance.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_DETAIL_ADVANCE_HPP #define INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_DETAIL_ADVANCE_HPP #include diff --git a/srook/iterator/range_iterators/detail/lambda_wrapper.hpp b/srook/iterator/range_iterators/detail/lambda_wrapper.hpp index 5c5e067..2a431f4 100644 --- a/srook/iterator/range_iterators/detail/lambda_wrapper.hpp +++ b/srook/iterator/range_iterators/detail/lambda_wrapper.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_DETAIL_LAMBDA_WRAPPER_HPP #define INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_DETAIL_LAMBDA_WRAPPER_HPP #include diff --git a/srook/iterator/range_iterators/drop_iterator.hpp b/srook/iterator/range_iterators/drop_iterator.hpp index 7f31fd9..7a39010 100644 --- a/srook/iterator/range_iterators/drop_iterator.hpp +++ b/srook/iterator/range_iterators/drop_iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_DROP_ITERATOR_HPP #define INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_DROP_ITERATOR_HPP #include diff --git a/srook/iterator/range_iterators/drop_while_iterator.hpp b/srook/iterator/range_iterators/drop_while_iterator.hpp index eb96866..138a8c0 100644 --- a/srook/iterator/range_iterators/drop_while_iterator.hpp +++ b/srook/iterator/range_iterators/drop_while_iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_DROP_WHILE_ITERATOR_HPP #define INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_DROP_WHILE_ITERATOR_HPP #include diff --git a/srook/iterator/range_iterators/filter_iterator.hpp b/srook/iterator/range_iterators/filter_iterator.hpp index 7c825fb..134768a 100644 --- a/srook/iterator/range_iterators/filter_iterator.hpp +++ b/srook/iterator/range_iterators/filter_iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_FILTERD_ITERATOR_HPP #define INCLUDED_FILTERD_ITERATOR_HPP #include diff --git a/srook/iterator/range_iterators/range_iterator.hpp b/srook/iterator/range_iterators/range_iterator.hpp index 0a58a5f..7aead2e 100644 --- a/srook/iterator/range_iterators/range_iterator.hpp +++ b/srook/iterator/range_iterators/range_iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_RANGE_ITERATORS_HPP #define INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_RANGE_ITERATORS_HPP #include diff --git a/srook/iterator/range_iterators/take_iterator.hpp b/srook/iterator/range_iterators/take_iterator.hpp index d63aa9c..3ed90ac 100644 --- a/srook/iterator/range_iterators/take_iterator.hpp +++ b/srook/iterator/range_iterators/take_iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_TAKE_ITERATOR_HPP #define INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_TAKE_ITERATOR_HPP #include diff --git a/srook/iterator/range_iterators/take_while_iterator.hpp b/srook/iterator/range_iterators/take_while_iterator.hpp index eb94a9b..bdc09dd 100644 --- a/srook/iterator/range_iterators/take_while_iterator.hpp +++ b/srook/iterator/range_iterators/take_while_iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_TAKE_WHILE_ITERATOR_HPP #define INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_TAKE_WHILE_ITERATOR_HPP #include diff --git a/srook/iterator/range_iterators/transform_iterator.hpp b/srook/iterator/range_iterators/transform_iterator.hpp index 3b5afce..3a0274a 100644 --- a/srook/iterator/range_iterators/transform_iterator.hpp +++ b/srook/iterator/range_iterators/transform_iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_TRANSFORM_ITERATOR_HPP #define INCLUDED_SROOK_ITERATOR_RANGE_ITERATORS_TRANSFORM_ITERATOR_HPP diff --git a/srook/limits/numeric_limits.hpp b/srook/limits/numeric_limits.hpp index c7afb13..eda0865 100644 --- a/srook/limits/numeric_limits.hpp +++ b/srook/limits/numeric_limits.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_LIMITS_NUMERIC_LIMITS_HPP #define INCLUDED_SROOK_LIMITS_NUMERIC_LIMITS_HPP diff --git a/srook/math.hpp b/srook/math.hpp index a9a741b..fc050af 100644 --- a/srook/math.hpp +++ b/srook/math.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH #define INCLUDED_SROOK_MATH diff --git a/srook/math/complex.hpp b/srook/math/complex.hpp index f531d17..582c97d 100644 --- a/srook/math/complex.hpp +++ b/srook/math/complex.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_COMPLEX_HPP #define INCLUDED_SROOK_MATH_COMPLEX_HPP diff --git a/srook/math/complex/config.hpp b/srook/math/complex/config.hpp index 709df85..62d433b 100644 --- a/srook/math/complex/config.hpp +++ b/srook/math/complex/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_COMPLEX_CONFIG_HPP #define INCLUDED_SROOK_MATH_COMPLEX_CONFIG_HPP diff --git a/srook/math/config/builtin.hpp b/srook/math/config/builtin.hpp index 1cb4766..4ec9e56 100644 --- a/srook/math/config/builtin.hpp +++ b/srook/math/config/builtin.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONFIG_BUILTIN_HPP #define INCLUDED_SROOK_MATH_CONFIG_BUILTIN_HPP diff --git a/srook/math/constants.hpp b/srook/math/constants.hpp index 3674a2d..2cf2d21 100644 --- a/srook/math/constants.hpp +++ b/srook/math/constants.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_HPP diff --git a/srook/math/constants/algorithm/abs.hpp b/srook/math/constants/algorithm/abs.hpp index cf14f37..b3e68df 100644 --- a/srook/math/constants/algorithm/abs.hpp +++ b/srook/math/constants/algorithm/abs.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_ABS_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_ABS_HPP diff --git a/srook/math/constants/algorithm/acos.hpp b/srook/math/constants/algorithm/acos.hpp index 8213973..7224da4 100644 --- a/srook/math/constants/algorithm/acos.hpp +++ b/srook/math/constants/algorithm/acos.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_ACOS_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_ACOS_HPP diff --git a/srook/math/constants/algorithm/approximate.hpp b/srook/math/constants/algorithm/approximate.hpp index 69d983d..df25aa1 100644 --- a/srook/math/constants/algorithm/approximate.hpp +++ b/srook/math/constants/algorithm/approximate.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_APPROXIMATE_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_APPROXIMATE_HPP diff --git a/srook/math/constants/algorithm/approximate/reciprocal.hpp b/srook/math/constants/algorithm/approximate/reciprocal.hpp index 1749287..80a86da 100644 --- a/srook/math/constants/algorithm/approximate/reciprocal.hpp +++ b/srook/math/constants/algorithm/approximate/reciprocal.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_APPROXIMATE_RECIPROCAL_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_APPROXIMATE_RECIPROCAL_HPP diff --git a/srook/math/constants/algorithm/asin.hpp b/srook/math/constants/algorithm/asin.hpp index 008653a..a566d4e 100644 --- a/srook/math/constants/algorithm/asin.hpp +++ b/srook/math/constants/algorithm/asin.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_ASIN_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_ASIN_HPP diff --git a/srook/math/constants/algorithm/copysign.hpp b/srook/math/constants/algorithm/copysign.hpp index 0e3b0fa..d39a3a5 100644 --- a/srook/math/constants/algorithm/copysign.hpp +++ b/srook/math/constants/algorithm/copysign.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_COPYSIGN_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_COPYSIGN_HPP diff --git a/srook/math/constants/algorithm/cos.hpp b/srook/math/constants/algorithm/cos.hpp index a0c2b04..3f3a6fb 100644 --- a/srook/math/constants/algorithm/cos.hpp +++ b/srook/math/constants/algorithm/cos.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_COS_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_COS_HPP diff --git a/srook/math/constants/algorithm/fabs.hpp b/srook/math/constants/algorithm/fabs.hpp index f13903d..e5960be 100644 --- a/srook/math/constants/algorithm/fabs.hpp +++ b/srook/math/constants/algorithm/fabs.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_FABS_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_FABS_HPP diff --git a/srook/math/constants/algorithm/factorial.hpp b/srook/math/constants/algorithm/factorial.hpp index 3fccc60..1ee6261 100644 --- a/srook/math/constants/algorithm/factorial.hpp +++ b/srook/math/constants/algorithm/factorial.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_FACTORIAL_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_FACTORIAL_HPP diff --git a/srook/math/constants/algorithm/fmod.hpp b/srook/math/constants/algorithm/fmod.hpp index 155d7f2..c509864 100644 --- a/srook/math/constants/algorithm/fmod.hpp +++ b/srook/math/constants/algorithm/fmod.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_FMOD_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_FMOD_HPP diff --git a/srook/math/constants/algorithm/gcd.hpp b/srook/math/constants/algorithm/gcd.hpp index fbeea05..6e24e15 100644 --- a/srook/math/constants/algorithm/gcd.hpp +++ b/srook/math/constants/algorithm/gcd.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_GCD_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_GCD_HPP diff --git a/srook/math/constants/algorithm/is_integer.hpp b/srook/math/constants/algorithm/is_integer.hpp index 21501bd..1a21f5d 100644 --- a/srook/math/constants/algorithm/is_integer.hpp +++ b/srook/math/constants/algorithm/is_integer.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_IS_INTEGER_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_IS_INTEGER_HPP diff --git a/srook/math/constants/algorithm/is_odd.hpp b/srook/math/constants/algorithm/is_odd.hpp index 4d01669..5f0974d 100644 --- a/srook/math/constants/algorithm/is_odd.hpp +++ b/srook/math/constants/algorithm/is_odd.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_IS_ODD_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_IS_ODD_HPP #include diff --git a/srook/math/constants/algorithm/isfinite.hpp b/srook/math/constants/algorithm/isfinite.hpp index 93e68f2..67455b4 100644 --- a/srook/math/constants/algorithm/isfinite.hpp +++ b/srook/math/constants/algorithm/isfinite.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_ISINITIE_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_ISINITIE_HPP diff --git a/srook/math/constants/algorithm/isinf.hpp b/srook/math/constants/algorithm/isinf.hpp index 88f63e4..da24a75 100644 --- a/srook/math/constants/algorithm/isinf.hpp +++ b/srook/math/constants/algorithm/isinf.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGOITHM_IS_INF_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGOITHM_IS_INF_HPP #include diff --git a/srook/math/constants/algorithm/isnan.hpp b/srook/math/constants/algorithm/isnan.hpp index 01c5530..7dc08cb 100644 --- a/srook/math/constants/algorithm/isnan.hpp +++ b/srook/math/constants/algorithm/isnan.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGOITHM_IS_NAN_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGOITHM_IS_NAN_HPP #include diff --git a/srook/math/constants/algorithm/log.hpp b/srook/math/constants/algorithm/log.hpp index 4fd2508..a0d96f2 100644 --- a/srook/math/constants/algorithm/log.hpp +++ b/srook/math/constants/algorithm/log.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_LOG_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_LOG_HPP diff --git a/srook/math/constants/algorithm/log2.hpp b/srook/math/constants/algorithm/log2.hpp index b322de9..c005c83 100644 --- a/srook/math/constants/algorithm/log2.hpp +++ b/srook/math/constants/algorithm/log2.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_LOG2_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_LOG2_HPP diff --git a/srook/math/constants/algorithm/sqrt.hpp b/srook/math/constants/algorithm/sqrt.hpp index da66ec2..8be4239 100644 --- a/srook/math/constants/algorithm/sqrt.hpp +++ b/srook/math/constants/algorithm/sqrt.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_SQRT_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_SQRT_HPP diff --git a/srook/math/constants/algorithm/tan.hpp b/srook/math/constants/algorithm/tan.hpp index 5a0981b..ca46588 100644 --- a/srook/math/constants/algorithm/tan.hpp +++ b/srook/math/constants/algorithm/tan.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_TAN_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_TAN_HPP diff --git a/srook/math/constants/algorithm/trunc.hpp b/srook/math/constants/algorithm/trunc.hpp index d937264..a9221a1 100644 --- a/srook/math/constants/algorithm/trunc.hpp +++ b/srook/math/constants/algorithm/trunc.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_TRUNC_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ALGORITHM_TRUNC_HPP diff --git a/srook/math/constants/ln.hpp b/srook/math/constants/ln.hpp index 6992c22..be3bcd1 100644 --- a/srook/math/constants/ln.hpp +++ b/srook/math/constants/ln.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_LN_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_LN_HPP diff --git a/srook/math/constants/math.hpp b/srook/math/constants/math.hpp index 1d602da..48a3dcd 100644 --- a/srook/math/constants/math.hpp +++ b/srook/math/constants/math.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANTS_MATH_HPP #define INCLUDED_SROOK_CONSTANTS_MATH_HPP diff --git a/srook/math/constants/pi.hpp b/srook/math/constants/pi.hpp index e3686aa..9e5cd86 100644 --- a/srook/math/constants/pi.hpp +++ b/srook/math/constants/pi.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_PI_HPP #define INCLUDED_SROOK_MATH_PI_HPP #include diff --git a/srook/math/constants/root.hpp b/srook/math/constants/root.hpp index 4296c76..5e38bd4 100644 --- a/srook/math/constants/root.hpp +++ b/srook/math/constants/root.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_CONSTANTS_ROOT_HPP #define INCLUDED_SROOK_MATH_CONSTANTS_ROOT_HPP #include diff --git a/srook/math/detail/feq.hpp b/srook/math/detail/feq.hpp index be97195..037ebbb 100644 --- a/srook/math/detail/feq.hpp +++ b/srook/math/detail/feq.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_DETAIL_FEQ_HPP #define INCLUDED_SROOK_MATH_DETAIL_FEQ_HPP diff --git a/srook/math/geometry.hpp b/srook/math/geometry.hpp index ccc2550..3687309 100644 --- a/srook/math/geometry.hpp +++ b/srook/math/geometry.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETRY_HPP #define INCLUDED_SROOK_MATH_GEOMETRY_HPP diff --git a/srook/math/geometry/algorithm.hpp b/srook/math/geometry/algorithm.hpp index b4005cd..90305a3 100644 --- a/srook/math/geometry/algorithm.hpp +++ b/srook/math/geometry/algorithm.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETORY_ALGORITHM_HPP #define INCLUDED_SROOK_MATH_GEOMETORY_ALGORITHM_HPP diff --git a/srook/math/geometry/algorithm/line.hpp b/srook/math/geometry/algorithm/line.hpp index 5763e6d..70a4be2 100644 --- a/srook/math/geometry/algorithm/line.hpp +++ b/srook/math/geometry/algorithm/line.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETORY_LINE_HPP #define INCLUDED_SROOK_MATH_GEOMETORY_LINE_HPP diff --git a/srook/math/geometry/algorithm/line/curve.hpp b/srook/math/geometry/algorithm/line/curve.hpp index e6c7e80..6415235 100644 --- a/srook/math/geometry/algorithm/line/curve.hpp +++ b/srook/math/geometry/algorithm/line/curve.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETORY_ALGORITHM_LINE_CURVE_HPP #define INCLUDED_SROOK_MATH_GEOMETORY_ALGORITHM_LINE_CURVE_HPP diff --git a/srook/math/geometry/algorithm/line/curve/parametrics.hpp b/srook/math/geometry/algorithm/line/curve/parametrics.hpp index e978c87..131edfa 100644 --- a/srook/math/geometry/algorithm/line/curve/parametrics.hpp +++ b/srook/math/geometry/algorithm/line/curve/parametrics.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETORY_ALGORITHM_LINE_CURVE_PARAMETRICS_HPP #define INCLUDED_SROOK_MATH_GEOMETORY_ALGORITHM_LINE_CURVE_PARAMETRICS_HPP diff --git a/srook/math/geometry/algorithm/line/curve/parametrics/hermite.hpp b/srook/math/geometry/algorithm/line/curve/parametrics/hermite.hpp index bd55035..341e6a2 100644 --- a/srook/math/geometry/algorithm/line/curve/parametrics/hermite.hpp +++ b/srook/math/geometry/algorithm/line/curve/parametrics/hermite.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETORY_ALGORITHM_LINE_CURVE_PARAMETRICS_HERMITE_HPP #define INCLUDED_SROOK_MATH_GEOMETORY_ALGORITHM_LINE_CURVE_PARAMETRICS_HERMITE_HPP diff --git a/srook/math/geometry/algorithm/line/straight.hpp b/srook/math/geometry/algorithm/line/straight.hpp index 270add4..89edb21 100644 --- a/srook/math/geometry/algorithm/line/straight.hpp +++ b/srook/math/geometry/algorithm/line/straight.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETORY_ALGORITHM_LINE_STRAIGHT_HPP #define INCLUDED_SROOK_MATH_GEOMETORY_ALGORITHM_LINE_STRAIGHT_HPP diff --git a/srook/math/geometry/algorithm/line/straight/least_squares.hpp b/srook/math/geometry/algorithm/line/straight/least_squares.hpp index 568c394..6ef1742 100644 --- a/srook/math/geometry/algorithm/line/straight/least_squares.hpp +++ b/srook/math/geometry/algorithm/line/straight/least_squares.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETORY_LINE_STRAIGHT_LEAST_SQUARES_HPP #define INCLUDED_SROOK_MATH_GEOMETORY_LINE_STRAIGHT_LEAST_SQUARES_HPP diff --git a/srook/math/geometry/algorithm/line/straight/points.hpp b/srook/math/geometry/algorithm/line/straight/points.hpp index 84be132..5c0b14d 100644 --- a/srook/math/geometry/algorithm/line/straight/points.hpp +++ b/srook/math/geometry/algorithm/line/straight/points.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETORY_ALGORITHM_LINE_STRAIGHT_POINTS_HPP #define INCLUDED_SROOK_MATH_GEOMETORY_ALGORITHM_LINE_STRAIGHT_POINTS_HPP diff --git a/srook/math/geometry/algorithm/line/straight/simple_equation.hpp b/srook/math/geometry/algorithm/line/straight/simple_equation.hpp index 3432875..0d60f3a 100644 --- a/srook/math/geometry/algorithm/line/straight/simple_equation.hpp +++ b/srook/math/geometry/algorithm/line/straight/simple_equation.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETORY_ALGORITHM_LINE_STRAIGHT_SIMPLE_EQUATION_HPP #define INCLUDED_SROOK_MATH_GEOMETORY_ALGORITHM_LINE_STRAIGHT_SIMPLE_EQUATION_HPP diff --git a/srook/math/geometry/algorithm/line/straight/slope.hpp b/srook/math/geometry/algorithm/line/straight/slope.hpp index 6785ea1..45dccee 100644 --- a/srook/math/geometry/algorithm/line/straight/slope.hpp +++ b/srook/math/geometry/algorithm/line/straight/slope.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETORY_ALGORITHM_LINE_STRAIGHT_SLOPE_HPP #define INCLUDED_SROOK_MATH_GEOMETORY_ALGORITHM_LINE_STRAIGHT_SLOPE_HPP diff --git a/srook/math/geometry/algorithm/min_area_polygon.hpp b/srook/math/geometry/algorithm/min_area_polygon.hpp index 9ba8591..7dbec15 100644 --- a/srook/math/geometry/algorithm/min_area_polygon.hpp +++ b/srook/math/geometry/algorithm/min_area_polygon.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETORY_MIN_AREA_POLYGON_HPP #define INCLUDED_SROOK_MATH_GEOMETORY_MIN_AREA_POLYGON_HPP diff --git a/srook/math/geometry/fundamental.hpp b/srook/math/geometry/fundamental.hpp index 4a971de..8dc7be5 100644 --- a/srook/math/geometry/fundamental.hpp +++ b/srook/math/geometry/fundamental.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETORY_FUNDAMENTAL_HPP #define INCLUDED_SROOK_MATH_GEOMETORY_FUNDAMENTAL_HPP diff --git a/srook/math/geometry/fundamental/point.hpp b/srook/math/geometry/fundamental/point.hpp index 3ef2091..94d4319 100644 --- a/srook/math/geometry/fundamental/point.hpp +++ b/srook/math/geometry/fundamental/point.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETORY_FUNDAMENTAL_POINT_HPP #define INCLUDED_SROOK_MATH_GEOMETORY_FUNDAMENTAL_POINT_HPP diff --git a/srook/math/geometry/fundamental/theta.hpp b/srook/math/geometry/fundamental/theta.hpp index ed2e959..cb8f3ac 100644 --- a/srook/math/geometry/fundamental/theta.hpp +++ b/srook/math/geometry/fundamental/theta.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETRY_FUNDAMENTAL_THETA_HPP #define INCLUDED_SROOK_MATH_GEOMETRY_FUNDAMENTAL_THETA_HPP diff --git a/srook/math/geometry/fundamental/vector.hpp b/srook/math/geometry/fundamental/vector.hpp index 289eaa8..a352902 100644 --- a/srook/math/geometry/fundamental/vector.hpp +++ b/srook/math/geometry/fundamental/vector.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETORY_FUNDAMENTAL_VECTOR_HPP #define INCLUDED_SROOK_MATH_GEOMETORY_FUNDAMENTAL_VECTOR_HPP diff --git a/srook/math/linear_algebra/algorithm/least_squares.hpp b/srook/math/linear_algebra/algorithm/least_squares.hpp index a519a69..2eca239 100644 --- a/srook/math/linear_algebra/algorithm/least_squares.hpp +++ b/srook/math/linear_algebra/algorithm/least_squares.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_ALGORITHM_LEAST_SQUARE_HPP #define INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_ALGORITHM_LEAST_SQUARE_HPP diff --git a/srook/math/linear_algebra/matrix.hpp b/srook/math/linear_algebra/matrix.hpp index 81ba8b4..6639ac3 100644 --- a/srook/math/linear_algebra/matrix.hpp +++ b/srook/math/linear_algebra/matrix.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_HPP #define INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_HPP diff --git a/srook/math/linear_algebra/matrix/cofactor.hpp b/srook/math/linear_algebra/matrix/cofactor.hpp index dff23fe..57186cf 100644 --- a/srook/math/linear_algebra/matrix/cofactor.hpp +++ b/srook/math/linear_algebra/matrix/cofactor.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_MATRIX_COFACTOR_HPP #define INCLUDED_SROOK_MATH_MATRIX_COFACTOR_HPP diff --git a/srook/math/linear_algebra/matrix/core.hpp b/srook/math/linear_algebra/matrix/core.hpp index f296540..a54aba9 100644 --- a/srook/math/linear_algebra/matrix/core.hpp +++ b/srook/math/linear_algebra/matrix/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_MATRIX_CORE_HPP #define INCLUDED_SROOK_MATH_MATRIX_CORE_HPP #include diff --git a/srook/math/linear_algebra/matrix/expression.hpp b/srook/math/linear_algebra/matrix/expression.hpp index 3bdbde4..8262cbe 100644 --- a/srook/math/linear_algebra/matrix/expression.hpp +++ b/srook/math/linear_algebra/matrix/expression.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_EXPRESSION_HPP #define INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_EXPRESSION_HPP diff --git a/srook/math/linear_algebra/matrix/helperfn.hpp b/srook/math/linear_algebra/matrix/helperfn.hpp index 6dd18fa..c5dfc75 100644 --- a/srook/math/linear_algebra/matrix/helperfn.hpp +++ b/srook/math/linear_algebra/matrix/helperfn.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_HELPERFN_HPP #define INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_HELPERFN_HPP diff --git a/srook/math/linear_algebra/matrix/impl.hpp b/srook/math/linear_algebra/matrix/impl.hpp index 04b9e00..a998728 100644 --- a/srook/math/linear_algebra/matrix/impl.hpp +++ b/srook/math/linear_algebra/matrix/impl.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_IMPL_HPP #define INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_IMPL_HPP diff --git a/srook/math/linear_algebra/matrix/inverse.hpp b/srook/math/linear_algebra/matrix/inverse.hpp index 511288e..4f18d63 100644 --- a/srook/math/linear_algebra/matrix/inverse.hpp +++ b/srook/math/linear_algebra/matrix/inverse.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_INVERSE_HPP #define INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_INVERSE_HPP diff --git a/srook/math/linear_algebra/matrix/inverse/gaussian_elimination_inv.hpp b/srook/math/linear_algebra/matrix/inverse/gaussian_elimination_inv.hpp index 13cd1ed..f95578f 100644 --- a/srook/math/linear_algebra/matrix/inverse/gaussian_elimination_inv.hpp +++ b/srook/math/linear_algebra/matrix/inverse/gaussian_elimination_inv.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_INVERSE_GAUSSIAN_ELIMINATION_INV_HPP #define INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_INVERSE_GAUSSIAN_ELIMINATION_INV_HPP diff --git a/srook/math/linear_algebra/matrix/linear_equations_algo.hpp b/srook/math/linear_algebra/matrix/linear_equations_algo.hpp index 92c2adc..5a9410c 100644 --- a/srook/math/linear_algebra/matrix/linear_equations_algo.hpp +++ b/srook/math/linear_algebra/matrix/linear_equations_algo.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_LINEAR_EQUATIONS_ALGO_HPP #define INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_LINEAR_EQUATIONS_ALGO_HPP diff --git a/srook/math/linear_algebra/matrix/linear_equations_algo/elementary_transformer.hpp b/srook/math/linear_algebra/matrix/linear_equations_algo/elementary_transformer.hpp index 2b5be57..3f7f89f 100644 --- a/srook/math/linear_algebra/matrix/linear_equations_algo/elementary_transformer.hpp +++ b/srook/math/linear_algebra/matrix/linear_equations_algo/elementary_transformer.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_LINEAR_EQUATIONS_ALGO_ELEMENTARY_TRANSFORMER_HPP #define INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_LINEAR_EQUATIONS_ALGO_ELEMENTARY_TRANSFORMER_HPP #include diff --git a/srook/math/linear_algebra/matrix/linear_equations_algo/gaussian_elimination_eq.hpp b/srook/math/linear_algebra/matrix/linear_equations_algo/gaussian_elimination_eq.hpp index e8886fd..bbd9ae2 100644 --- a/srook/math/linear_algebra/matrix/linear_equations_algo/gaussian_elimination_eq.hpp +++ b/srook/math/linear_algebra/matrix/linear_equations_algo/gaussian_elimination_eq.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_LINEAR_EQUATIONS_ALGO_GAUSSIAN_ELIMINATION_EQ_HPP #define INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_LINEAR_EQUATIONS_ALGO_GAUSSIAN_ELIMINATION_EQ_HPP diff --git a/srook/math/linear_algebra/matrix/utils.hpp b/srook/math/linear_algebra/matrix/utils.hpp index 7c2aa0b..7607b13 100644 --- a/srook/math/linear_algebra/matrix/utils.hpp +++ b/srook/math/linear_algebra/matrix/utils.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_UTILS_HPP #define INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_MATRIX_UTILS_HPP diff --git a/srook/math/linear_algebra/vector.hpp b/srook/math/linear_algebra/vector.hpp index 533bb3e..197c56d 100644 --- a/srook/math/linear_algebra/vector.hpp +++ b/srook/math/linear_algebra/vector.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_VECTOR_HPP #define INCLUDED_SROOK_MATH_LINEAR_ALGEBRA_VECTOR_HPP diff --git a/srook/math/linear_algebra/vector/core.hpp b/srook/math/linear_algebra/vector/core.hpp index da47214..67e76b3 100644 --- a/srook/math/linear_algebra/vector/core.hpp +++ b/srook/math/linear_algebra/vector/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETORY_FUNDAMENTAL_VECTOR_CORE_HPP #define INCLUDED_SROOK_MATH_GEOMETORY_FUNDAMENTAL_VECTOR_CORE_HPP diff --git a/srook/math/linear_algebra/vector/expression.hpp b/srook/math/linear_algebra/vector/expression.hpp index 2914d70..87948a0 100644 --- a/srook/math/linear_algebra/vector/expression.hpp +++ b/srook/math/linear_algebra/vector/expression.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_VECTOR_LINEAR_ALGEBRA_EXPRESSION_HPP #define INCLUDED_SROOK_MATH_VECTOR_LIBEAR_ALGEBRA_EXPRESSION_HPP diff --git a/srook/math/linear_algebra/vector/impl.hpp b/srook/math/linear_algebra/vector/impl.hpp index f61d67e..8ae9891 100644 --- a/srook/math/linear_algebra/vector/impl.hpp +++ b/srook/math/linear_algebra/vector/impl.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_GEOMETORY_FUNDAMENTAL_VECTOR_IMPL_HPP #define INCLUDED_SROOK_MATH_GEOMETORY_FUNDAMENTAL_VECTOR_IMPL_HPP diff --git a/srook/math/matrix.hpp b/srook/math/matrix.hpp index e9cee39..5eb40d8 100644 --- a/srook/math/matrix.hpp +++ b/srook/math/matrix.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_MATRIX_HPP #define INCLUDED_SROOK_MATH_MATRIX_HPP diff --git a/srook/math/primes.hpp b/srook/math/primes.hpp index 8c95102..4392d15 100644 --- a/srook/math/primes.hpp +++ b/srook/math/primes.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_PRIMES_HPP #define INCLUDED_SROOK_MATH_PRIMES_HPP diff --git a/srook/math/primes/counting.hpp b/srook/math/primes/counting.hpp index 1e4124b..23c7203 100644 --- a/srook/math/primes/counting.hpp +++ b/srook/math/primes/counting.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_PRIMES_COUNTING_HPP #define INCLUDED_SROOK_MATH_PRIMES_COUNTING_HPP diff --git a/srook/math/primes/counting/legendre.hpp b/srook/math/primes/counting/legendre.hpp index 7e0081e..962f7f7 100644 --- a/srook/math/primes/counting/legendre.hpp +++ b/srook/math/primes/counting/legendre.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License /** * @addtogroup srook_math_primes_counting * @file legendre.hpp diff --git a/srook/math/primes/counting/sieve_atkin.hpp b/srook/math/primes/counting/sieve_atkin.hpp index 6ff75a0..16e1d98 100644 --- a/srook/math/primes/counting/sieve_atkin.hpp +++ b/srook/math/primes/counting/sieve_atkin.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License /** * @addtogroup srook_math_primes_counting * @file sieve_atkin.hpp diff --git a/srook/math/primes/counting/sieve_eratosthenese.hpp b/srook/math/primes/counting/sieve_eratosthenese.hpp index 9c00f59..08c7d75 100644 --- a/srook/math/primes/counting/sieve_eratosthenese.hpp +++ b/srook/math/primes/counting/sieve_eratosthenese.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License /** * @addtogroup srook_math_primes_counting * @file sieve_eratosthenese.hpp diff --git a/srook/math/primes/counting/sieve_euler.hpp b/srook/math/primes/counting/sieve_euler.hpp index 5b291c8..dc1f1e2 100644 --- a/srook/math/primes/counting/sieve_euler.hpp +++ b/srook/math/primes/counting/sieve_euler.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License /** * @addtogroup srook_math_primes_counting * @file sieve_euler.hpp diff --git a/srook/math/primes/counting/sieve_sundaram.hpp b/srook/math/primes/counting/sieve_sundaram.hpp index 2faf5a2..34a1eed 100644 --- a/srook/math/primes/counting/sieve_sundaram.hpp +++ b/srook/math/primes/counting/sieve_sundaram.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License /** * @addtogroup srook_math_primes_counting * @file sieve_sundaram.hpp diff --git a/srook/math/primes/progression.hpp b/srook/math/primes/progression.hpp index 8ac538b..8171bbe 100644 --- a/srook/math/primes/progression.hpp +++ b/srook/math/primes/progression.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_PRIMES_PROGRESSION_HPP #define INCLUDED_SROOK_MATH_PRIMES_PROGRESSION_HPP diff --git a/srook/math/primes/progression/sieve_atkin.hpp b/srook/math/primes/progression/sieve_atkin.hpp index 301aac5..60c9e5e 100644 --- a/srook/math/primes/progression/sieve_atkin.hpp +++ b/srook/math/primes/progression/sieve_atkin.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License /** * @addtogroup srook_math_primes_progression * @file sieve_atkin.hpp diff --git a/srook/math/primes/progression/sieve_eratosthenese.hpp b/srook/math/primes/progression/sieve_eratosthenese.hpp index 3e6f2e8..55cba85 100644 --- a/srook/math/primes/progression/sieve_eratosthenese.hpp +++ b/srook/math/primes/progression/sieve_eratosthenese.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License /** * @addtogroup srook_math_primes_progression * @file sieve_eratosthenese.hpp diff --git a/srook/math/primes/progression/sieve_euler.hpp b/srook/math/primes/progression/sieve_euler.hpp index 77a5b2f..792c689 100644 --- a/srook/math/primes/progression/sieve_euler.hpp +++ b/srook/math/primes/progression/sieve_euler.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License /** * @addtogroup srook_math_primes_progression * @file sieve_euler.hpp diff --git a/srook/math/primes/progression/sieve_sundaram.hpp b/srook/math/primes/progression/sieve_sundaram.hpp index 54756c9..32ae940 100644 --- a/srook/math/primes/progression/sieve_sundaram.hpp +++ b/srook/math/primes/progression/sieve_sundaram.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License /** * @addtogroup srook_math_primes_progression * @file sieve_sundaram.hpp diff --git a/srook/math/vector.hpp b/srook/math/vector.hpp index f78ce78..7837357 100644 --- a/srook/math/vector.hpp +++ b/srook/math/vector.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_VECTOR_HPP #define INCLUDED_SROOK_MATH_VECTOR_HPP diff --git a/srook/memory.hpp b/srook/memory.hpp index d936948..13f86c2 100644 --- a/srook/memory.hpp +++ b/srook/memory.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_HPP #define INCLUDED_SROOK_MEMORY_HPP #include diff --git a/srook/memory/addressof.hpp b/srook/memory/addressof.hpp index 8456b91..ec3abf3 100644 --- a/srook/memory/addressof.hpp +++ b/srook/memory/addressof.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ADDRESS_OF_HPP #define INCLUDED_SROOK_MEMORY_ADDRESS_OF_HPP #include diff --git a/srook/memory/align.hpp b/srook/memory/align.hpp index c2a273c..734adbb 100644 --- a/srook/memory/align.hpp +++ b/srook/memory/align.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALIGN_HPP #define INCLUDED_SROOK_MEMORY_ALIGN_HPP diff --git a/srook/memory/align/aligned_alloc.hpp b/srook/memory/align/aligned_alloc.hpp index a0fac99..0541579 100644 --- a/srook/memory/align/aligned_alloc.hpp +++ b/srook/memory/align/aligned_alloc.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALIGNED_ALLOC_HPP #define INCLUDED_SROOK_MEMORY_ALIGNED_ALLOC_HPP diff --git a/srook/memory/align/aligned_buffer.hpp b/srook/memory/align/aligned_buffer.hpp index 33a8c95..9a1752f 100644 --- a/srook/memory/align/aligned_buffer.hpp +++ b/srook/memory/align/aligned_buffer.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALIGNED_BUFFER_HPP #define INCLUDED_SROOK_MEMORY_ALIGNED_BUFFER_HPP diff --git a/srook/memory/align/aligned_membuf.hpp b/srook/memory/align/aligned_membuf.hpp index d52b4c2..3d6879a 100644 --- a/srook/memory/align/aligned_membuf.hpp +++ b/srook/memory/align/aligned_membuf.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALIGNED_MEMBUF_HPP #define INCLUDED_SROOK_MEMORY_ALIGNED_MEMBUF_HPP diff --git a/srook/memory/align/detail/align_func.hpp b/srook/memory/align/detail/align_func.hpp index 7ceb059..3c42d9a 100644 --- a/srook/memory/align/detail/align_func.hpp +++ b/srook/memory/align/detail/align_func.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALIGN_DETAIL_ALIGN_FUNC_HPP #define INCLUDED_SROOK_MEMORY_ALIGN_DETAIL_ALIGN_FUNC_HPP diff --git a/srook/memory/align/detail/aligned_alloc.hpp b/srook/memory/align/detail/aligned_alloc.hpp index a2c4efc..9b318d5 100644 --- a/srook/memory/align/detail/aligned_alloc.hpp +++ b/srook/memory/align/detail/aligned_alloc.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALIGN_DETAIL_ALIGNED_ALLOC_HPP #define INCLUDED_SROOK_MEMORY_ALIGN_DETAIL_ALIGNED_ALLOC_HPP diff --git a/srook/memory/align/detail/aligned_alloc/android.hpp b/srook/memory/align/detail/aligned_alloc/android.hpp index a5d03a9..088cd5c 100644 --- a/srook/memory/align/detail/aligned_alloc/android.hpp +++ b/srook/memory/align/detail/aligned_alloc/android.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_ANDROID_HPP #define INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_ANDROID_HPP diff --git a/srook/memory/align/detail/aligned_alloc/gnu_mm.hpp b/srook/memory/align/detail/aligned_alloc/gnu_mm.hpp index 1d5f34f..8006150 100644 --- a/srook/memory/align/detail/aligned_alloc/gnu_mm.hpp +++ b/srook/memory/align/detail/aligned_alloc/gnu_mm.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_GNU_MM_HPP #define INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_GNU_MM_HPP diff --git a/srook/memory/align/detail/aligned_alloc/macos.hpp b/srook/memory/align/detail/aligned_alloc/macos.hpp index 54b514c..8f6a5d7 100644 --- a/srook/memory/align/detail/aligned_alloc/macos.hpp +++ b/srook/memory/align/detail/aligned_alloc/macos.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_MACOS_HPP #define INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_MACOS_HPP diff --git a/srook/memory/align/detail/aligned_alloc/mm.hpp b/srook/memory/align/detail/aligned_alloc/mm.hpp index 92640eb..e613de8 100644 --- a/srook/memory/align/detail/aligned_alloc/mm.hpp +++ b/srook/memory/align/detail/aligned_alloc/mm.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_MM_HPP #define INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_MM_HPP diff --git a/srook/memory/align/detail/aligned_alloc/msvc.hpp b/srook/memory/align/detail/aligned_alloc/msvc.hpp index 5ba1c25..46a7f58 100644 --- a/srook/memory/align/detail/aligned_alloc/msvc.hpp +++ b/srook/memory/align/detail/aligned_alloc/msvc.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_MSVC_HPP #define INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_MSVC_HPP diff --git a/srook/memory/align/detail/aligned_alloc/native.hpp b/srook/memory/align/detail/aligned_alloc/native.hpp index 9efa703..864a7f2 100644 --- a/srook/memory/align/detail/aligned_alloc/native.hpp +++ b/srook/memory/align/detail/aligned_alloc/native.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_NATIVE_HPP #define INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_NATIVE_HPP diff --git a/srook/memory/align/detail/aligned_alloc/posix.hpp b/srook/memory/align/detail/aligned_alloc/posix.hpp index c92de3c..3e42901 100644 --- a/srook/memory/align/detail/aligned_alloc/posix.hpp +++ b/srook/memory/align/detail/aligned_alloc/posix.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_POSIX_HPP #define INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_POSIX_HPP diff --git a/srook/memory/align/detail/aligned_alloc/std.hpp b/srook/memory/align/detail/aligned_alloc/std.hpp index 992bb51..75d526a 100644 --- a/srook/memory/align/detail/aligned_alloc/std.hpp +++ b/srook/memory/align/detail/aligned_alloc/std.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_STD_HPP #define INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_STD_HPP diff --git a/srook/memory/align/detail/aligned_alloc/sunos.hpp b/srook/memory/align/detail/aligned_alloc/sunos.hpp index b8473a6..78557d4 100644 --- a/srook/memory/align/detail/aligned_alloc/sunos.hpp +++ b/srook/memory/align/detail/aligned_alloc/sunos.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_SUNOS_HPP #define INCLUDED_SROOK_MEMORY_ALIGNED_DETAIL_ALIGNED_ALLOC_SUNOS_HPP diff --git a/srook/memory/align/detail/config.hpp b/srook/memory/align/detail/config.hpp index b830ecb..4911663 100644 --- a/srook/memory/align/detail/config.hpp +++ b/srook/memory/align/detail/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_DETAIL_CONFIG_HPP #define INCLUDED_SROOK_MEMORY_DETAIL_CONFIG_HPP diff --git a/srook/memory/align/detail/is_alignment.hpp b/srook/memory/align/detail/is_alignment.hpp index 529e2a8..6eed61a 100644 --- a/srook/memory/align/detail/is_alignment.hpp +++ b/srook/memory/align/detail/is_alignment.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALIGNMENT_DETAIL_IS_ALIGNMENT_HPP #define INCLUDED_SROOK_MEMORY_ALIGNMENT_DETAIL_IS_ALIGNMENT_HPP diff --git a/srook/memory/allocator.hpp b/srook/memory/allocator.hpp index 9d6139c..f718149 100644 --- a/srook/memory/allocator.hpp +++ b/srook/memory/allocator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALLOCATOR_HPP #define INCLUDED_SROOK_MEMORY_ALLOCATOR_HPP diff --git a/srook/memory/allocator/allocated_ptr.hpp b/srook/memory/allocator/allocated_ptr.hpp index 6493c9f..d7d1456 100644 --- a/srook/memory/allocator/allocated_ptr.hpp +++ b/srook/memory/allocator/allocated_ptr.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALLOCATED_PTR_HPP #define INCLUDED_SROOK_MEMORY_ALLOCATED_PTR_HPP diff --git a/srook/memory/allocator/malloc_allocator.hpp b/srook/memory/allocator/malloc_allocator.hpp index 79fcb80..bf9b0cb 100644 --- a/srook/memory/allocator/malloc_allocator.hpp +++ b/srook/memory/allocator/malloc_allocator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALLOCATOR_MALLOC_ALLOCATOR_HPP #define INCLUDED_SROOK_MEMORY_ALLOCATOR_MALLOC_ALLOCATOR_HPP #include diff --git a/srook/memory/allocator/new_allocator.hpp b/srook/memory/allocator/new_allocator.hpp index f379fe1..87f0730 100644 --- a/srook/memory/allocator/new_allocator.hpp +++ b/srook/memory/allocator/new_allocator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_ALLOCATOR_NEW_ALLOCATOR_HPP #define INCLUDED_SROOK_MEMORY_ALLOCATOR_NEW_ALLOCATOR_HPP #include diff --git a/srook/memory/destroy.hpp b/srook/memory/destroy.hpp index d7ebb90..3283569 100644 --- a/srook/memory/destroy.hpp +++ b/srook/memory/destroy.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License. +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License. #ifndef INCLUDED_SROOK_MEMORY_DESTROY_HPP #define INCLUDED_SROOK_MEMORY_DESTROY_HPP diff --git a/srook/memory/destroy/config.hpp b/srook/memory/destroy/config.hpp index 01d7806..0ed4ac6 100644 --- a/srook/memory/destroy/config.hpp +++ b/srook/memory/destroy/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License. +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License. #ifndef INCLUDED_SROOK_MEMORY_DESTORY_CONFIG_HPP #define INCLUDED_SROOK_MEMORY_DESTORY_CONFIG_HPP diff --git a/srook/memory/destroy/destroy.hpp b/srook/memory/destroy/destroy.hpp index 2bc4342..8db513a 100644 --- a/srook/memory/destroy/destroy.hpp +++ b/srook/memory/destroy/destroy.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License. +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License. #ifndef INCLUDED_SROOK_MEMORY_DESTORY_DESTROY_HPP #define INCLUDED_SROOK_MEMORY_DESTORY_DESTROY_HPP diff --git a/srook/memory/destroy/destroy_at.hpp b/srook/memory/destroy/destroy_at.hpp index f59a360..8f0a0e9 100644 --- a/srook/memory/destroy/destroy_at.hpp +++ b/srook/memory/destroy/destroy_at.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License. +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License. #ifndef INCLUDED_SROOK_MEMORY_DESTORY_DESTROY_AT_HPP #define INCLUDED_SROOK_MEMORY_DESTORY_DESTROY_AT_HPP diff --git a/srook/memory/destroy/destroy_n.hpp b/srook/memory/destroy/destroy_n.hpp index 0526da7..2494ba5 100644 --- a/srook/memory/destroy/destroy_n.hpp +++ b/srook/memory/destroy/destroy_n.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License. +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License. #ifndef INCLUDED_SROOK_MEMORY_DESTORY_DESTROY_N_HPP #define INCLUDED_SROOK_MEMORY_DESTORY_DESTROY_N_HPP diff --git a/srook/memory/launder.hpp b/srook/memory/launder.hpp index c12f854..c3aa278 100644 --- a/srook/memory/launder.hpp +++ b/srook/memory/launder.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_LAUNDER_HPP #define INCLUDED_SROOK_MEMORY_LAUNDER_HPP diff --git a/srook/memory/pointer_traits.hpp b/srook/memory/pointer_traits.hpp index 762ce5e..a15c79a 100644 --- a/srook/memory/pointer_traits.hpp +++ b/srook/memory/pointer_traits.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_MEMORY_POINTER_TRAITS_HPP #define INCLUDED_MEMORY_POINTER_TRAITS_HPP #include diff --git a/srook/memory/shared_ptr.hpp b/srook/memory/shared_ptr.hpp index b9fd0e1..689dc97 100644 --- a/srook/memory/shared_ptr.hpp +++ b/srook/memory/shared_ptr.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_SHARED_PTR #define INCLUDED_SROOK_MEMORY_SHARED_PTR diff --git a/srook/memory/singleton/mayers_singleton.hpp b/srook/memory/singleton/mayers_singleton.hpp index 02e3e5c..4c8be62 100644 --- a/srook/memory/singleton/mayers_singleton.hpp +++ b/srook/memory/singleton/mayers_singleton.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_SINGLETON_MAYERS_SINGLETON_HPP #define INCLUDED_SROOK_MEMORY_SINGLETON_MAYERS_SINGLETON_HPP diff --git a/srook/memory/singleton/singleton.hpp b/srook/memory/singleton/singleton.hpp index ca848af..3cf975b 100644 --- a/srook/memory/singleton/singleton.hpp +++ b/srook/memory/singleton/singleton.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_SINGLETON_SINGLETON_HPP #define INCLUDED_SROOK_MEMORY_SINGLETON_SINGLETON_HPP #ifdef _MSC_VER diff --git a/srook/memory/singleton/singleton_traits.hpp b/srook/memory/singleton/singleton_traits.hpp index 0a59327..2b17a3f 100644 --- a/srook/memory/singleton/singleton_traits.hpp +++ b/srook/memory/singleton/singleton_traits.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_SINGLETON_SINGLETON_TRAITS_HPP #define INCLUDED_SROOK_MEMORY_SINGLETON_SINGLETON_TRAITS_HPP diff --git a/srook/memory/to_address.hpp b/srook/memory/to_address.hpp index 6987cd6..0ebeaad 100644 --- a/srook/memory/to_address.hpp +++ b/srook/memory/to_address.hpp @@ -1,5 +1,5 @@ // Inspired by p0653r1 -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_TO_ADDRESS_HPP #define INCLUDED_SROOK_MEMORY_TO_ADDRESS_HPP #include diff --git a/srook/memory/unique_ptr.hpp b/srook/memory/unique_ptr.hpp index f02fcb5..c9c1ee7 100644 --- a/srook/memory/unique_ptr.hpp +++ b/srook/memory/unique_ptr.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_UNIQUE_PTR_HPP #define INCLUDED_SROOK_MEMORY_UNIQUE_PTR_HPP #if __has_include() diff --git a/srook/memory/uses_allocator.hpp b/srook/memory/uses_allocator.hpp index 4555403..fbf69ac 100644 --- a/srook/memory/uses_allocator.hpp +++ b/srook/memory/uses_allocator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_USES_ALLOCATOR_HPP #define INCLUDED_SROOK_MEMORY_USES_ALLOCATOR_HPP diff --git a/srook/memory/utility/aggregate_adaptor.hpp b/srook/memory/utility/aggregate_adaptor.hpp index 92b183f..88305fa 100644 --- a/srook/memory/utility/aggregate_adaptor.hpp +++ b/srook/memory/utility/aggregate_adaptor.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_UTILITY_AGGREGATE_ADAPTER_HPP #define INCLUDED_SROOK_MEMORY_UTILITY_AGGREGATE_ADAPTER_HPP diff --git a/srook/memory/utility/checked_delete.hpp b/srook/memory/utility/checked_delete.hpp index 32c8828..758335b 100644 --- a/srook/memory/utility/checked_delete.hpp +++ b/srook/memory/utility/checked_delete.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_UTILITY_CHECKED_DELETE_HPP #define INCLUDED_SROOK_MEMORY_UTILITY_CHECKED_DELETE_HPP diff --git a/srook/memory/utility/load.hpp b/srook/memory/utility/load.hpp index e1c2c96..3483f22 100644 --- a/srook/memory/utility/load.hpp +++ b/srook/memory/utility/load.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_MEMORY_MODEL_HPP #define INCLUDED_SROOK_MEMORY_MEMORY_MODEL_HPP diff --git a/srook/memory/utility/load/acquire_load.hpp b/srook/memory/utility/load/acquire_load.hpp index e0839d6..ab275f2 100644 --- a/srook/memory/utility/load/acquire_load.hpp +++ b/srook/memory/utility/load/acquire_load.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_MEMORY_MODEL_ACQUIRE_LOAD_HPP #define INCLUDED_SROOK_MEMORY_MEMORY_MODEL_ACQUIRE_LOAD_HPP diff --git a/srook/memory/utility/load/relaxed_load.hpp b/srook/memory/utility/load/relaxed_load.hpp index f8e5929..2ebc570 100644 --- a/srook/memory/utility/load/relaxed_load.hpp +++ b/srook/memory/utility/load/relaxed_load.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_MEMORY_MODEL_RELAXED_LOAD_HPP #define INCLUDED_SROOK_MEMORY_MEMORY_MODEL_RELAXED_LOAD_HPP diff --git a/srook/memory/weak_ptr.hpp b/srook/memory/weak_ptr.hpp index bbd2509..ced7318 100644 --- a/srook/memory/weak_ptr.hpp +++ b/srook/memory/weak_ptr.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_WEAK_PTR_HPP #define INCLUDED_SROOK_MEMORY_WEAK_PTR_HPP diff --git a/srook/memory_resource.hpp b/srook/memory_resource.hpp index 49144c2..2a27a17 100644 --- a/srook/memory_resource.hpp +++ b/srook/memory_resource.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_RESOURCE_HPP #define INCLUDED_SROOK_MEMORY_RESOURCE_HPP diff --git a/srook/memory_resource/config.hpp b/srook/memory_resource/config.hpp index dd3491f..2d62900 100644 --- a/srook/memory_resource/config.hpp +++ b/srook/memory_resource/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_RESOURCE_CONFIG_HPP #define INCLUDED_SROOK_MEMORY_RESOURCE_CONFIG_HPP diff --git a/srook/memory_resource/global_memory_resources.hpp b/srook/memory_resource/global_memory_resources.hpp index 1d8135b..d69373d 100644 --- a/srook/memory_resource/global_memory_resources.hpp +++ b/srook/memory_resource/global_memory_resources.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_RESOURCE_GLOBAL_MEMORY_RESOURCES_HPP #define INCLUDED_SROOK_MEMORY_RESOURCE_GLOBAL_MEMORY_RESOURCES_HPP diff --git a/srook/memory_resource/memory_resource.hpp b/srook/memory_resource/memory_resource.hpp index a2893cc..b59c349 100644 --- a/srook/memory_resource/memory_resource.hpp +++ b/srook/memory_resource/memory_resource.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_RESOURCE_MEMORY_RESOURCE_HPP #define INCLUDED_SROOK_MEMORY_RESOURCE_MEMORY_RESOURCE_HPP diff --git a/srook/memory_resource/pmrlib.hpp b/srook/memory_resource/pmrlib.hpp index 6afc865..2ab6e41 100644 --- a/srook/memory_resource/pmrlib.hpp +++ b/srook/memory_resource/pmrlib.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // This file defines the all aliases for polymorphic memory resources. #ifndef INCLUDED_SROOK_MEMORY_RESOURCE_PMRLIB_HPP #define INCLUDED_SROOK_MEMORY_RESOURCE_PMRLIB_HPP diff --git a/srook/memory_resource/polymorphic_allocator.hpp b/srook/memory_resource/polymorphic_allocator.hpp index 1db5229..d135ff5 100644 --- a/srook/memory_resource/polymorphic_allocator.hpp +++ b/srook/memory_resource/polymorphic_allocator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_RESOURCE_POLYMORPHIC_ALLOCATOR_HPP #define INCLUDED_SROOK_MEMORY_RESOURCE_POLYMORPHIC_ALLOCATOR_HPP diff --git a/srook/memory_resource/pool_options.hpp b/srook/memory_resource/pool_options.hpp index 7699c65..303e188 100644 --- a/srook/memory_resource/pool_options.hpp +++ b/srook/memory_resource/pool_options.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MEMORY_RESOURCE_POOL_OPTIONS_HPP #define INCLUDED_SROOK_MEMORY_RESOURCE_POOL_OPTIONS_HPP diff --git a/srook/memory_resource/resource_adaptor.hpp b/srook/memory_resource/resource_adaptor.hpp index 5a146d6..6c4022b 100644 --- a/srook/memory_resource/resource_adaptor.hpp +++ b/srook/memory_resource/resource_adaptor.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License // resource_adaptor is NOT standart included #ifndef INCLUDED_SROOK_MEMORY_RESOURCE_RESOURCE_ADAPTOR_HPP #define INCLUDED_SROOK_MEMORY_RESOURCE_RESOURCE_ADAPTOR_HPP diff --git a/srook/mpl/constant_sequence/algorithm.hpp b/srook/mpl/constant_sequence/algorithm.hpp index 11fe0a3..b79cd0d 100644 --- a/srook/mpl/constant_sequence/algorithm.hpp +++ b/srook/mpl/constant_sequence/algorithm.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_ALGORITHM_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_ALGORITHM_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/adjacent_find.hpp b/srook/mpl/constant_sequence/algorithm/adjacent_find.hpp index 2a5f6a3..8cf5865 100644 --- a/srook/mpl/constant_sequence/algorithm/adjacent_find.hpp +++ b/srook/mpl/constant_sequence/algorithm/adjacent_find.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_ADJACENT_FIND_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_ADJACENT_FIND_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/all_of.hpp b/srook/mpl/constant_sequence/algorithm/all_of.hpp index 8f7121c..3ae0ee2 100644 --- a/srook/mpl/constant_sequence/algorithm/all_of.hpp +++ b/srook/mpl/constant_sequence/algorithm/all_of.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_ALL_OF_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_ALL_OF_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/any_of.hpp b/srook/mpl/constant_sequence/algorithm/any_of.hpp index a905bae..222f266 100644 --- a/srook/mpl/constant_sequence/algorithm/any_of.hpp +++ b/srook/mpl/constant_sequence/algorithm/any_of.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_ANY_OF_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_ANY_OF_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/at.hpp b/srook/mpl/constant_sequence/algorithm/at.hpp index 015808d..58f3d85 100644 --- a/srook/mpl/constant_sequence/algorithm/at.hpp +++ b/srook/mpl/constant_sequence/algorithm/at.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_AT_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_AT_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/binary_search.hpp b/srook/mpl/constant_sequence/algorithm/binary_search.hpp index f4adb7b..aca4cd4 100644 --- a/srook/mpl/constant_sequence/algorithm/binary_search.hpp +++ b/srook/mpl/constant_sequence/algorithm/binary_search.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_ALGORITHM_BINARY_SEARCH_HPP #define INCLUDED_SROOK_MPL_ALGORITHM_BINARY_SEARCH_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/bound.hpp b/srook/mpl/constant_sequence/algorithm/bound.hpp index 20d27d1..c509619 100644 --- a/srook/mpl/constant_sequence/algorithm/bound.hpp +++ b/srook/mpl/constant_sequence/algorithm/bound.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_BOUNDER_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_BOUNDER_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/concat.hpp b/srook/mpl/constant_sequence/algorithm/concat.hpp index ef1f1d4..2d70cdf 100644 --- a/srook/mpl/constant_sequence/algorithm/concat.hpp +++ b/srook/mpl/constant_sequence/algorithm/concat.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_CONCAT_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_CONCAT_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/count.hpp b/srook/mpl/constant_sequence/algorithm/count.hpp index 7b9af8e..9e0b718 100644 --- a/srook/mpl/constant_sequence/algorithm/count.hpp +++ b/srook/mpl/constant_sequence/algorithm/count.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_COUNT_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_COUNT_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/count_if.hpp b/srook/mpl/constant_sequence/algorithm/count_if.hpp index 3247ec9..15db973 100644 --- a/srook/mpl/constant_sequence/algorithm/count_if.hpp +++ b/srook/mpl/constant_sequence/algorithm/count_if.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_COUNT_IF_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_COUNT_IF_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/equal.hpp b/srook/mpl/constant_sequence/algorithm/equal.hpp index 9cf729f..53c4595 100644 --- a/srook/mpl/constant_sequence/algorithm/equal.hpp +++ b/srook/mpl/constant_sequence/algorithm/equal.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCULDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_EQUAL_HPP #define INCULDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_EQUAL_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/equal_range.hpp b/srook/mpl/constant_sequence/algorithm/equal_range.hpp index d21b904..e2458e3 100644 --- a/srook/mpl/constant_sequence/algorithm/equal_range.hpp +++ b/srook/mpl/constant_sequence/algorithm/equal_range.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_EQUAL_RANGE_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_EQUAL_RANGE_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/erase.hpp b/srook/mpl/constant_sequence/algorithm/erase.hpp index 1282e3f..1dd42d0 100644 --- a/srook/mpl/constant_sequence/algorithm/erase.hpp +++ b/srook/mpl/constant_sequence/algorithm/erase.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_PLAYER_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_PLAYER_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/erase_all.hpp b/srook/mpl/constant_sequence/algorithm/erase_all.hpp index 3b75588..55f5e89 100644 --- a/srook/mpl/constant_sequence/algorithm/erase_all.hpp +++ b/srook/mpl/constant_sequence/algorithm/erase_all.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_ERASE_ALL_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_ERASE_ALL_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/erase_duplicate.hpp b/srook/mpl/constant_sequence/algorithm/erase_duplicate.hpp index 6a84017..0092520 100644 --- a/srook/mpl/constant_sequence/algorithm/erase_duplicate.hpp +++ b/srook/mpl/constant_sequence/algorithm/erase_duplicate.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_ERASE_DUPLICATE_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_ERASE_DUPLICATE_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/erase_if.hpp b/srook/mpl/constant_sequence/algorithm/erase_if.hpp index d2ae054..02462bc 100644 --- a/srook/mpl/constant_sequence/algorithm/erase_if.hpp +++ b/srook/mpl/constant_sequence/algorithm/erase_if.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_ERASE_IF_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_ERASE_IF_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/erase_index.hpp b/srook/mpl/constant_sequence/algorithm/erase_index.hpp index 1d55596..38a2e88 100644 --- a/srook/mpl/constant_sequence/algorithm/erase_index.hpp +++ b/srook/mpl/constant_sequence/algorithm/erase_index.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_ERASE_INDEX_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_ERASE_INDEX_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/erase_n.hpp b/srook/mpl/constant_sequence/algorithm/erase_n.hpp index 89380d1..3e912f7 100644 --- a/srook/mpl/constant_sequence/algorithm/erase_n.hpp +++ b/srook/mpl/constant_sequence/algorithm/erase_n.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_ERASE_N #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_ERASE_N #include diff --git a/srook/mpl/constant_sequence/algorithm/filter.hpp b/srook/mpl/constant_sequence/algorithm/filter.hpp index 612d9ad..8cc9db7 100644 --- a/srook/mpl/constant_sequence/algorithm/filter.hpp +++ b/srook/mpl/constant_sequence/algorithm/filter.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_FILTER_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_FILTER_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/find.hpp b/srook/mpl/constant_sequence/algorithm/find.hpp index da5f4a8..9c7d4a0 100644 --- a/srook/mpl/constant_sequence/algorithm/find.hpp +++ b/srook/mpl/constant_sequence/algorithm/find.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_FIND_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_FIND_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/find_end.hpp b/srook/mpl/constant_sequence/algorithm/find_end.hpp index 9e6cd8f..d66b216 100644 --- a/srook/mpl/constant_sequence/algorithm/find_end.hpp +++ b/srook/mpl/constant_sequence/algorithm/find_end.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_FIND_END_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_FIND_END_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/find_if.hpp b/srook/mpl/constant_sequence/algorithm/find_if.hpp index ee75c76..c5da9fe 100644 --- a/srook/mpl/constant_sequence/algorithm/find_if.hpp +++ b/srook/mpl/constant_sequence/algorithm/find_if.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_FIND_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_FIND_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/find_if_index.hpp b/srook/mpl/constant_sequence/algorithm/find_if_index.hpp index 48caad7..8030520 100644 --- a/srook/mpl/constant_sequence/algorithm/find_if_index.hpp +++ b/srook/mpl/constant_sequence/algorithm/find_if_index.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_FIND_IF_INDEX_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_FIND_IF_INDEX_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/find_if_not.hpp b/srook/mpl/constant_sequence/algorithm/find_if_not.hpp index 18cb1a7..c6344ea 100644 --- a/srook/mpl/constant_sequence/algorithm/find_if_not.hpp +++ b/srook/mpl/constant_sequence/algorithm/find_if_not.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_FIND_IF_NOT_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_FIND_IF_NOT_HPP #include"find_if.hpp" diff --git a/srook/mpl/constant_sequence/algorithm/find_index.hpp b/srook/mpl/constant_sequence/algorithm/find_index.hpp index e5b7e9e..5f04d99 100644 --- a/srook/mpl/constant_sequence/algorithm/find_index.hpp +++ b/srook/mpl/constant_sequence/algorithm/find_index.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_FIND_INDEX_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_FIND_INDEX_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/first.hpp b/srook/mpl/constant_sequence/algorithm/first.hpp index e7aee81..0a17fb5 100644 --- a/srook/mpl/constant_sequence/algorithm/first.hpp +++ b/srook/mpl/constant_sequence/algorithm/first.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_FIRST_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_FIRST_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/for_each.hpp b/srook/mpl/constant_sequence/algorithm/for_each.hpp index 15e5c6f..a5046dd 100644 --- a/srook/mpl/constant_sequence/algorithm/for_each.hpp +++ b/srook/mpl/constant_sequence/algorithm/for_each.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_FOR_EACH_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_FOR_EACH_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/includes.hpp b/srook/mpl/constant_sequence/algorithm/includes.hpp index a804340..f8ed65d 100644 --- a/srook/mpl/constant_sequence/algorithm/includes.hpp +++ b/srook/mpl/constant_sequence/algorithm/includes.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_INCLUDES_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_INCLUDES_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/inplace_merge.hpp b/srook/mpl/constant_sequence/algorithm/inplace_merge.hpp index e1a8156..8c6a1e8 100644 --- a/srook/mpl/constant_sequence/algorithm/inplace_merge.hpp +++ b/srook/mpl/constant_sequence/algorithm/inplace_merge.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_INPLACE_MERGE_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_INPLACE_MERGE_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/insert.hpp b/srook/mpl/constant_sequence/algorithm/insert.hpp index d27a4f2..629703e 100644 --- a/srook/mpl/constant_sequence/algorithm/insert.hpp +++ b/srook/mpl/constant_sequence/algorithm/insert.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_INSERT_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_INSERT_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/is_all_comp.hpp b/srook/mpl/constant_sequence/algorithm/is_all_comp.hpp index 02eff57..e0694d0 100644 --- a/srook/mpl/constant_sequence/algorithm/is_all_comp.hpp +++ b/srook/mpl/constant_sequence/algorithm/is_all_comp.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_IS_ALL_COMP_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_IS_ALL_COMP_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/is_heap.hpp b/srook/mpl/constant_sequence/algorithm/is_heap.hpp index 07841d4..f5cfcb6 100644 --- a/srook/mpl/constant_sequence/algorithm/is_heap.hpp +++ b/srook/mpl/constant_sequence/algorithm/is_heap.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_MPL_CONSTANT_SEQUENCE_ALGORITHM_IS_HEAP_HPP #define INCLUDED_MPL_CONSTANT_SEQUENCE_ALGORITHM_IS_HEAP_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/is_partitioned.hpp b/srook/mpl/constant_sequence/algorithm/is_partitioned.hpp index 0a068cc..9666e1d 100644 --- a/srook/mpl/constant_sequence/algorithm/is_partitioned.hpp +++ b/srook/mpl/constant_sequence/algorithm/is_partitioned.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_IS_PARTITIONED_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_IS_PARTITIONED_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/is_permutation.hpp b/srook/mpl/constant_sequence/algorithm/is_permutation.hpp index 9c59332..310bde6 100644 --- a/srook/mpl/constant_sequence/algorithm/is_permutation.hpp +++ b/srook/mpl/constant_sequence/algorithm/is_permutation.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_IS_PERMUTATION_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_IS_PERMUTATION_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/is_sorted.hpp b/srook/mpl/constant_sequence/algorithm/is_sorted.hpp index f2d3fe1..df98103 100644 --- a/srook/mpl/constant_sequence/algorithm/is_sorted.hpp +++ b/srook/mpl/constant_sequence/algorithm/is_sorted.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_IS_SORTED_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_IS_SORTED_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/is_sorted_until.hpp b/srook/mpl/constant_sequence/algorithm/is_sorted_until.hpp index c8bd789..2982061 100644 --- a/srook/mpl/constant_sequence/algorithm/is_sorted_until.hpp +++ b/srook/mpl/constant_sequence/algorithm/is_sorted_until.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_IS_SORTED_UNTIL_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_IS_SORTED_UNTIL_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/iter_swap.hpp b/srook/mpl/constant_sequence/algorithm/iter_swap.hpp index da91840..3cb326a 100644 --- a/srook/mpl/constant_sequence/algorithm/iter_swap.hpp +++ b/srook/mpl/constant_sequence/algorithm/iter_swap.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_ITER_SWAP_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_ITER_SWAP_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/last.hpp b/srook/mpl/constant_sequence/algorithm/last.hpp index 0b9f642..cadafc8 100644 --- a/srook/mpl/constant_sequence/algorithm/last.hpp +++ b/srook/mpl/constant_sequence/algorithm/last.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_LAST_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_LAST_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/length.hpp b/srook/mpl/constant_sequence/algorithm/length.hpp index 9ebe8e4..46f2d4a 100644 --- a/srook/mpl/constant_sequence/algorithm/length.hpp +++ b/srook/mpl/constant_sequence/algorithm/length.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_LENGTH_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_LENGTH_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/make_heap.hpp b/srook/mpl/constant_sequence/algorithm/make_heap.hpp index de47170..e7fa61b 100644 --- a/srook/mpl/constant_sequence/algorithm/make_heap.hpp +++ b/srook/mpl/constant_sequence/algorithm/make_heap.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_MAKE_HEAP_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_MAKE_HEAP_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/merge.hpp b/srook/mpl/constant_sequence/algorithm/merge.hpp index b8fe787..191f251 100644 --- a/srook/mpl/constant_sequence/algorithm/merge.hpp +++ b/srook/mpl/constant_sequence/algorithm/merge.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_MERGE_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_MERGE_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/minmax.hpp b/srook/mpl/constant_sequence/algorithm/minmax.hpp index 1db2ab2..5b69303 100644 --- a/srook/mpl/constant_sequence/algorithm/minmax.hpp +++ b/srook/mpl/constant_sequence/algorithm/minmax.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_MINMAX_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_MINMAX_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/mismatch.hpp b/srook/mpl/constant_sequence/algorithm/mismatch.hpp index 386e46c..9c5169a 100644 --- a/srook/mpl/constant_sequence/algorithm/mismatch.hpp +++ b/srook/mpl/constant_sequence/algorithm/mismatch.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_MISMATCH_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_MISMATCH_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/none_of.hpp b/srook/mpl/constant_sequence/algorithm/none_of.hpp index 6c38c8a..7ecf563 100644 --- a/srook/mpl/constant_sequence/algorithm/none_of.hpp +++ b/srook/mpl/constant_sequence/algorithm/none_of.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_NONE_OF_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_NONE_OF_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/nth_element.hpp b/srook/mpl/constant_sequence/algorithm/nth_element.hpp index d4f4cf3..90e70c8 100644 --- a/srook/mpl/constant_sequence/algorithm/nth_element.hpp +++ b/srook/mpl/constant_sequence/algorithm/nth_element.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_NTH_ELEMENT_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_NTH_ELEMENT_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/nth_max.hpp b/srook/mpl/constant_sequence/algorithm/nth_max.hpp index e6675e1..5672604 100644 --- a/srook/mpl/constant_sequence/algorithm/nth_max.hpp +++ b/srook/mpl/constant_sequence/algorithm/nth_max.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_NTH_MAX_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_NTH_MAX_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/nth_min.hpp b/srook/mpl/constant_sequence/algorithm/nth_min.hpp index 0b29801..e5d0df8 100644 --- a/srook/mpl/constant_sequence/algorithm/nth_min.hpp +++ b/srook/mpl/constant_sequence/algorithm/nth_min.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_NTH_MIN_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_NTH_MIN_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/partial_head.hpp b/srook/mpl/constant_sequence/algorithm/partial_head.hpp index bbbc8d6..7921b25 100644 --- a/srook/mpl/constant_sequence/algorithm/partial_head.hpp +++ b/srook/mpl/constant_sequence/algorithm/partial_head.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_PARTIAL_HEAD_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_PARTIAL_HEAD_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/partial_tail.hpp b/srook/mpl/constant_sequence/algorithm/partial_tail.hpp index f2f7b20..9f33e93 100644 --- a/srook/mpl/constant_sequence/algorithm/partial_tail.hpp +++ b/srook/mpl/constant_sequence/algorithm/partial_tail.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_PARTIAL_TAIL_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_PARTIAL_TAIL_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/pop_back.hpp b/srook/mpl/constant_sequence/algorithm/pop_back.hpp index 1d5d8aa..3e6d8af 100644 --- a/srook/mpl/constant_sequence/algorithm/pop_back.hpp +++ b/srook/mpl/constant_sequence/algorithm/pop_back.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_POP_BACK_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_POP_BACK_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/pop_front.hpp b/srook/mpl/constant_sequence/algorithm/pop_front.hpp index ca752b7..323c759 100644 --- a/srook/mpl/constant_sequence/algorithm/pop_front.hpp +++ b/srook/mpl/constant_sequence/algorithm/pop_front.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_POP_FRONT_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_POP_FRONT_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/prev_rotate.hpp b/srook/mpl/constant_sequence/algorithm/prev_rotate.hpp index d0e5811..f5c380e 100644 --- a/srook/mpl/constant_sequence/algorithm/prev_rotate.hpp +++ b/srook/mpl/constant_sequence/algorithm/prev_rotate.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_PREV_ROTATE_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_PREV_ROTATE_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/replace.hpp b/srook/mpl/constant_sequence/algorithm/replace.hpp index ffaa283..d946484 100644 --- a/srook/mpl/constant_sequence/algorithm/replace.hpp +++ b/srook/mpl/constant_sequence/algorithm/replace.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_REPLACE_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_REPLACE_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/replace_all.hpp b/srook/mpl/constant_sequence/algorithm/replace_all.hpp index 106198c..1d938c9 100644 --- a/srook/mpl/constant_sequence/algorithm/replace_all.hpp +++ b/srook/mpl/constant_sequence/algorithm/replace_all.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_REPLACE_ALL_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_REPLACE_ALL_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/reverse.hpp b/srook/mpl/constant_sequence/algorithm/reverse.hpp index 865ff0d..82a5f5f 100644 --- a/srook/mpl/constant_sequence/algorithm/reverse.hpp +++ b/srook/mpl/constant_sequence/algorithm/reverse.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_REVERSE_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_REVERSE_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/rotate.hpp b/srook/mpl/constant_sequence/algorithm/rotate.hpp index 354c4ee..fb3d078 100644 --- a/srook/mpl/constant_sequence/algorithm/rotate.hpp +++ b/srook/mpl/constant_sequence/algorithm/rotate.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_ROTATE_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_ROTATE_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/search.hpp b/srook/mpl/constant_sequence/algorithm/search.hpp index e30a35c..21afec3 100644 --- a/srook/mpl/constant_sequence/algorithm/search.hpp +++ b/srook/mpl/constant_sequence/algorithm/search.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_SEARCH_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_SEARCH_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/search_n.hpp b/srook/mpl/constant_sequence/algorithm/search_n.hpp index dcfdd3a..01a394c 100644 --- a/srook/mpl/constant_sequence/algorithm/search_n.hpp +++ b/srook/mpl/constant_sequence/algorithm/search_n.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_SEARCH_N_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_SEARCH_N_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/set_difference.hpp b/srook/mpl/constant_sequence/algorithm/set_difference.hpp index 57534e2..17c8bfe 100644 --- a/srook/mpl/constant_sequence/algorithm/set_difference.hpp +++ b/srook/mpl/constant_sequence/algorithm/set_difference.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_SET_DIFFERENCE_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_SET_DIFFERENCE_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/set_intersection.hpp b/srook/mpl/constant_sequence/algorithm/set_intersection.hpp index ca14473..55980a1 100644 --- a/srook/mpl/constant_sequence/algorithm/set_intersection.hpp +++ b/srook/mpl/constant_sequence/algorithm/set_intersection.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_SET_INTERSECTION_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_SET_INTERSECTION_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/size.hpp b/srook/mpl/constant_sequence/algorithm/size.hpp index e622f35..abae36e 100644 --- a/srook/mpl/constant_sequence/algorithm/size.hpp +++ b/srook/mpl/constant_sequence/algorithm/size.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_SIZE #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_SIZE #include diff --git a/srook/mpl/constant_sequence/algorithm/sort.hpp b/srook/mpl/constant_sequence/algorithm/sort.hpp index 16c1d3a..0dfab78 100644 --- a/srook/mpl/constant_sequence/algorithm/sort.hpp +++ b/srook/mpl/constant_sequence/algorithm/sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_SORT_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_SORT_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/summation.hpp b/srook/mpl/constant_sequence/algorithm/summation.hpp index 4888a9c..43a7a01 100644 --- a/srook/mpl/constant_sequence/algorithm/summation.hpp +++ b/srook/mpl/constant_sequence/algorithm/summation.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_SUMMATION_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_SUMMATION_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/swap.hpp b/srook/mpl/constant_sequence/algorithm/swap.hpp index 60ec8a0..f668959 100644 --- a/srook/mpl/constant_sequence/algorithm/swap.hpp +++ b/srook/mpl/constant_sequence/algorithm/swap.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_SWAP_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_SWAP_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/swap_at.hpp b/srook/mpl/constant_sequence/algorithm/swap_at.hpp index ba916f3..9d25656 100644 --- a/srook/mpl/constant_sequence/algorithm/swap_at.hpp +++ b/srook/mpl/constant_sequence/algorithm/swap_at.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SWAP_AT_HPP #define INCLUDED_SROOK_CONSTANT_SWAP_AT_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/transfer.hpp b/srook/mpl/constant_sequence/algorithm/transfer.hpp index 42e1a31..25eba5f 100644 --- a/srook/mpl/constant_sequence/algorithm/transfer.hpp +++ b/srook/mpl/constant_sequence/algorithm/transfer.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_TRANSFER_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_TRANSFER_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/transfer_array.hpp b/srook/mpl/constant_sequence/algorithm/transfer_array.hpp index bbd6c32..026321a 100644 --- a/srook/mpl/constant_sequence/algorithm/transfer_array.hpp +++ b/srook/mpl/constant_sequence/algorithm/transfer_array.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_TRANSFER_ARRAY_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_TRANSFER_ARRAY_HPP #include diff --git a/srook/mpl/constant_sequence/algorithm/transfer_constant.hpp b/srook/mpl/constant_sequence/algorithm/transfer_constant.hpp index 545899e..760f565 100644 --- a/srook/mpl/constant_sequence/algorithm/transfer_constant.hpp +++ b/srook/mpl/constant_sequence/algorithm/transfer_constant.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_CONSTANT_SEQUENCE_ALGORITHM_TRANSFER_CONSTANT_HPP #define INCLUDED_SROOK_CONSTANT_SEQUENCE_ALGORITHM_TRANSFER_CONSTANT_HPP diff --git a/srook/mpl/constant_sequence/equ_sequence.hpp b/srook/mpl/constant_sequence/equ_sequence.hpp index 6aaa8a6..acd9622 100644 --- a/srook/mpl/constant_sequence/equ_sequence.hpp +++ b/srook/mpl/constant_sequence/equ_sequence.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_EQU_DOUBLE_SEQUENCE_HPP #define INCLUDED_SROOK_MPL_CONSTANT_EQU_DOUBLE_SEQUENCE_HPP #include diff --git a/srook/mpl/constant_sequence/interval_sequence.hpp b/srook/mpl/constant_sequence/interval_sequence.hpp index c1c3420..8c4cdde 100644 --- a/srook/mpl/constant_sequence/interval_sequence.hpp +++ b/srook/mpl/constant_sequence/interval_sequence.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_INTERVAL_SEQUENCE_IMPL #define INCLUDED_SROOK_INTERVAL_SEQUENCE_IMPL #include diff --git a/srook/mpl/constant_sequence/iterator/distance.hpp b/srook/mpl/constant_sequence/iterator/distance.hpp index f2029d8..5e64f70 100644 --- a/srook/mpl/constant_sequence/iterator/distance.hpp +++ b/srook/mpl/constant_sequence/iterator/distance.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_DISTANCE_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ALGORITHM_DISTANCE_HPP #include diff --git a/srook/mpl/constant_sequence/iterator/index_sequence_iterator.hpp b/srook/mpl/constant_sequence/iterator/index_sequence_iterator.hpp index 1c7a44f..d13ba97 100644 --- a/srook/mpl/constant_sequence/iterator/index_sequence_iterator.hpp +++ b/srook/mpl/constant_sequence/iterator/index_sequence_iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ITERATOR_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_ITERATOR_HPP #include diff --git a/srook/mpl/constant_sequence/iterator/make_index_sequence_iterator_range.hpp b/srook/mpl/constant_sequence/iterator/make_index_sequence_iterator_range.hpp index 8703e6c..5c12ea5 100644 --- a/srook/mpl/constant_sequence/iterator/make_index_sequence_iterator_range.hpp +++ b/srook/mpl/constant_sequence/iterator/make_index_sequence_iterator_range.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_MAKE_INDEX_SEQUENCE_ITERATOR_RANGE_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_MAKE_INDEX_SEQUENCE_ITERATOR_RANGE_HPP #include diff --git a/srook/mpl/constant_sequence/reverse_sequence.hpp b/srook/mpl/constant_sequence/reverse_sequence.hpp index ea41098..c83a62f 100644 --- a/srook/mpl/constant_sequence/reverse_sequence.hpp +++ b/srook/mpl/constant_sequence/reverse_sequence.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_REVERSE_SEQUENCE_HPP #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_REVERSE_SEQUENCE_HPP #include diff --git a/srook/mpl/constant_sequence/samevalue_sequence.hpp b/srook/mpl/constant_sequence/samevalue_sequence.hpp index b617a0f..1dd29dc 100644 --- a/srook/mpl/constant_sequence/samevalue_sequence.hpp +++ b/srook/mpl/constant_sequence/samevalue_sequence.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_SAMEVALUE_SEQUENCE #define INCLUDED_SROOK_MPL_CONSTANT_SEQUENCE_SAMEVALUE_SEQUENCE #include diff --git a/srook/mpl/expression.hpp b/srook/mpl/expression.hpp index e8efadc..203d161 100644 --- a/srook/mpl/expression.hpp +++ b/srook/mpl/expression.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_EXPRESSION #define INCLUDED_SROOK_MPL_EXPRESSION #include diff --git a/srook/mpl/has_iterator.hpp b/srook/mpl/has_iterator.hpp index 10c153b..43725fa 100644 --- a/srook/mpl/has_iterator.hpp +++ b/srook/mpl/has_iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDE_SROOK_MPL_HAS_ITERATOR #define INCLUDE_SROOK_MPL_HAS_ITERATOR #include diff --git a/srook/mpl/make_same_type_sequence.hpp b/srook/mpl/make_same_type_sequence.hpp index 1a15cf2..c4019ff 100644 --- a/srook/mpl/make_same_type_sequence.hpp +++ b/srook/mpl/make_same_type_sequence.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MAKE_SAME_TYPE_SEQUENCE_HPP #define INCLUDED_SROOK_MAKE_SAME_TYPE_SEQUENCE_HPP diff --git a/srook/mpl/string/stoi.hpp b/srook/mpl/string/stoi.hpp index 65d9838..64e6f24 100644 --- a/srook/mpl/string/stoi.hpp +++ b/srook/mpl/string/stoi.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_STRING_STOI_HPP #define INCLUDED_SROOK_MPL_STRING_STOI_HPP #include diff --git a/srook/mpl/typelist.hpp b/srook/mpl/typelist.hpp index 074fa2b..6f69ab9 100644 --- a/srook/mpl/typelist.hpp +++ b/srook/mpl/typelist.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_TYPELIST_HPP #define INCLUDED_SROOK_MPL_TYPELIST_HPP #include diff --git a/srook/mpl/typelist/typelist.hpp b/srook/mpl/typelist/typelist.hpp index 04a2a7f..02c3d99 100644 --- a/srook/mpl/typelist/typelist.hpp +++ b/srook/mpl/typelist/typelist.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_TYPELIST_TYPELIST_HPP #define INCLUDED_SROOK_MPL_TYPELIST_TYPELIST_HPP #include diff --git a/srook/mpl/variadic_player.hpp b/srook/mpl/variadic_player.hpp index f651c59..ce15c6b 100644 --- a/srook/mpl/variadic_player.hpp +++ b/srook/mpl/variadic_player.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef SROOK_INCLUDE_VARIADIC_PLAYER_HPP #define SROOK_INCLUDE_VARIADIC_PLAYER_HPP #include diff --git a/srook/mpl/variadic_tmp_player.hpp b/srook/mpl/variadic_tmp_player.hpp index cbfcb4a..c2cbc38 100644 --- a/srook/mpl/variadic_tmp_player.hpp +++ b/srook/mpl/variadic_tmp_player.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TMP_PLAYER_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TMP_PLAYER_HPP #include diff --git a/srook/mpl/variadic_types.hpp b/srook/mpl/variadic_types.hpp index b1b7366..0e692a3 100644 --- a/srook/mpl/variadic_types.hpp +++ b/srook/mpl/variadic_types.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/at.hpp b/srook/mpl/variadic_types/algorithm/at.hpp index 4c7e226..048d9b5 100644 --- a/srook/mpl/variadic_types/algorithm/at.hpp +++ b/srook/mpl/variadic_types/algorithm/at.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_AT_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_AT_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/concat.hpp b/srook/mpl/variadic_types/algorithm/concat.hpp index 988d394..0caeb73 100644 --- a/srook/mpl/variadic_types/algorithm/concat.hpp +++ b/srook/mpl/variadic_types/algorithm/concat.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_CONCAT_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_CONCAT_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/erase.hpp b/srook/mpl/variadic_types/algorithm/erase.hpp index 9412c6c..1a26e7e 100644 --- a/srook/mpl/variadic_types/algorithm/erase.hpp +++ b/srook/mpl/variadic_types/algorithm/erase.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_ERASE_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_ERASE_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/erase_all.hpp b/srook/mpl/variadic_types/algorithm/erase_all.hpp index c7b1291..1e514b4 100644 --- a/srook/mpl/variadic_types/algorithm/erase_all.hpp +++ b/srook/mpl/variadic_types/algorithm/erase_all.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_ERASE_ALL_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_ERASE_ALL_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/first.hpp b/srook/mpl/variadic_types/algorithm/first.hpp index accf662..895e6c1 100644 --- a/srook/mpl/variadic_types/algorithm/first.hpp +++ b/srook/mpl/variadic_types/algorithm/first.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_FIRST_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_FIRST_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/index_of.hpp b/srook/mpl/variadic_types/algorithm/index_of.hpp index 4435978..8eec685 100644 --- a/srook/mpl/variadic_types/algorithm/index_of.hpp +++ b/srook/mpl/variadic_types/algorithm/index_of.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_INDEX_OF_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_INDEX_OF_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/is_contained_in.hpp b/srook/mpl/variadic_types/algorithm/is_contained_in.hpp index 07203a4..1d4d248 100644 --- a/srook/mpl/variadic_types/algorithm/is_contained_in.hpp +++ b/srook/mpl/variadic_types/algorithm/is_contained_in.hpp @@ -1,5 +1,5 @@ // Inspired by n4115 -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #include #include diff --git a/srook/mpl/variadic_types/algorithm/last.hpp b/srook/mpl/variadic_types/algorithm/last.hpp index 50d85ec..49883c5 100644 --- a/srook/mpl/variadic_types/algorithm/last.hpp +++ b/srook/mpl/variadic_types/algorithm/last.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_LAST_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_LAST_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/length.hpp b/srook/mpl/variadic_types/algorithm/length.hpp index e92c6a2..3eeb01b 100644 --- a/srook/mpl/variadic_types/algorithm/length.hpp +++ b/srook/mpl/variadic_types/algorithm/length.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_LENGTH_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_LENGTH_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/no_duplicate.hpp b/srook/mpl/variadic_types/algorithm/no_duplicate.hpp index cfd22a4..5c37149 100644 --- a/srook/mpl/variadic_types/algorithm/no_duplicate.hpp +++ b/srook/mpl/variadic_types/algorithm/no_duplicate.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_NO_DUPLICATE_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_NO_DUPLICATE_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/partial_head.hpp b/srook/mpl/variadic_types/algorithm/partial_head.hpp index 7d578af..8e247f5 100644 --- a/srook/mpl/variadic_types/algorithm/partial_head.hpp +++ b/srook/mpl/variadic_types/algorithm/partial_head.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_PARTIAL_HEAD_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_PARTIAL_HEAD_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/partial_tail.hpp b/srook/mpl/variadic_types/algorithm/partial_tail.hpp index dc30fa3..8748ce0 100644 --- a/srook/mpl/variadic_types/algorithm/partial_tail.hpp +++ b/srook/mpl/variadic_types/algorithm/partial_tail.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_PARTIAL_TAIL_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_PARTIAL_TAIL_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/pop_back.hpp b/srook/mpl/variadic_types/algorithm/pop_back.hpp index e698aa8..5f08e2e 100644 --- a/srook/mpl/variadic_types/algorithm/pop_back.hpp +++ b/srook/mpl/variadic_types/algorithm/pop_back.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_POP_BACK_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_POP_BACK_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/pop_front.hpp b/srook/mpl/variadic_types/algorithm/pop_front.hpp index c552308..9b61d1c 100644 --- a/srook/mpl/variadic_types/algorithm/pop_front.hpp +++ b/srook/mpl/variadic_types/algorithm/pop_front.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_POP_FRONT_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_POP_FRONT_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/replace.hpp b/srook/mpl/variadic_types/algorithm/replace.hpp index e4262ea..ca52e53 100644 --- a/srook/mpl/variadic_types/algorithm/replace.hpp +++ b/srook/mpl/variadic_types/algorithm/replace.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_REPLACE_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_REPLACE_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/replace_all.hpp b/srook/mpl/variadic_types/algorithm/replace_all.hpp index 63796dc..eac2438 100644 --- a/srook/mpl/variadic_types/algorithm/replace_all.hpp +++ b/srook/mpl/variadic_types/algorithm/replace_all.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_REPLACE_ALL_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_REPLACE_ALL_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/reverse.hpp b/srook/mpl/variadic_types/algorithm/reverse.hpp index 1b2ebb2..4216fe5 100644 --- a/srook/mpl/variadic_types/algorithm/reverse.hpp +++ b/srook/mpl/variadic_types/algorithm/reverse.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_REVERSE_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_REVERSE_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/size.hpp b/srook/mpl/variadic_types/algorithm/size.hpp index f16d419..1555cff 100644 --- a/srook/mpl/variadic_types/algorithm/size.hpp +++ b/srook/mpl/variadic_types/algorithm/size.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_SIZE_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_SIZE_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/swap_at.hpp b/srook/mpl/variadic_types/algorithm/swap_at.hpp index 8c53703..e7e072e 100644 --- a/srook/mpl/variadic_types/algorithm/swap_at.hpp +++ b/srook/mpl/variadic_types/algorithm/swap_at.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_SWAP_AT_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_SWAP_AT_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/swap_at_specified.hpp b/srook/mpl/variadic_types/algorithm/swap_at_specified.hpp index 6d15a26..ef7b279 100644 --- a/srook/mpl/variadic_types/algorithm/swap_at_specified.hpp +++ b/srook/mpl/variadic_types/algorithm/swap_at_specified.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_SWAP_AT_SPECIFIED_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_SWAP_AT_SPECIFIED_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/transfer.hpp b/srook/mpl/variadic_types/algorithm/transfer.hpp index 3e22a88..6803b44 100644 --- a/srook/mpl/variadic_types/algorithm/transfer.hpp +++ b/srook/mpl/variadic_types/algorithm/transfer.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_TRANSFER_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_TRANSFER_HPP #include diff --git a/srook/mpl/variadic_types/algorithm/unwrap_pack_from_value.hpp b/srook/mpl/variadic_types/algorithm/unwrap_pack_from_value.hpp index 89f8684..b6705a7 100644 --- a/srook/mpl/variadic_types/algorithm/unwrap_pack_from_value.hpp +++ b/srook/mpl/variadic_types/algorithm/unwrap_pack_from_value.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_UNWRAP_PACK_FROM_VALUE_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_ALGORITHM_UNWRAP_PACK_FROM_VALUE_HPP #include diff --git a/srook/mpl/variadic_types/pack.hpp b/srook/mpl/variadic_types/pack.hpp index 26acc20..abff541 100644 --- a/srook/mpl/variadic_types/pack.hpp +++ b/srook/mpl/variadic_types/pack.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_PACK_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_PACK_HPP #include diff --git a/srook/mpl/variadic_types/variadic_player.hpp b/srook/mpl/variadic_types/variadic_player.hpp index ad0bfc6..b481b50 100644 --- a/srook/mpl/variadic_types/variadic_player.hpp +++ b/srook/mpl/variadic_types/variadic_player.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef SROOK_INCLUDE_MPL_VARIADIC_TYPES_VARIADIC_PLAYER_HPP #define SROOK_INCLUDE_MPL_VARIADIC_TYPES_VARIADIC_PLAYER_HPP #include diff --git a/srook/mpl/variadic_types/variadic_tmp_player.hpp b/srook/mpl/variadic_types/variadic_tmp_player.hpp index 8c46aef..bc8523b 100644 --- a/srook/mpl/variadic_types/variadic_tmp_player.hpp +++ b/srook/mpl/variadic_types/variadic_tmp_player.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_VARIADIC_TYPES_VARIADIC_TMP_PLAYER_HPP #define INCLUDED_SROOK_MPL_VARIADIC_TYPES_VARIADIC_TMP_PLAYER_HPP #include diff --git a/srook/mutex.hpp b/srook/mutex.hpp index 7946f9f..65db719 100644 --- a/srook/mutex.hpp +++ b/srook/mutex.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_HPP #define INCLUDED_SROOK_MUTEX_HPP diff --git a/srook/mutex/generic.hpp b/srook/mutex/generic.hpp index 97a50dd..1277e45 100644 --- a/srook/mutex/generic.hpp +++ b/srook/mutex/generic.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_GENERIC_HPP #define INCLUDED_SROOK_MUTEX_GENERIC_HPP diff --git a/srook/mutex/generic/detail/try_locker.hpp b/srook/mutex/generic/detail/try_locker.hpp index 532193f..c91186e 100644 --- a/srook/mutex/generic/detail/try_locker.hpp +++ b/srook/mutex/generic/detail/try_locker.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_GENERIC_DETAIL_TRY_LOCKER_HPP #define INCLUDED_SROOK_MUTEX_GENERIC_DETAIL_TRY_LOCKER_HPP #include diff --git a/srook/mutex/generic/lock.hpp b/srook/mutex/generic/lock.hpp index e17fb81..baa4aa8 100644 --- a/srook/mutex/generic/lock.hpp +++ b/srook/mutex/generic/lock.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_GENERIC_LOCK_HPP #define INCLUDED_SROOK_MUTEX_GENERIC_LOCK_HPP diff --git a/srook/mutex/generic/try_lock.hpp b/srook/mutex/generic/try_lock.hpp index be77dc6..7099378 100644 --- a/srook/mutex/generic/try_lock.hpp +++ b/srook/mutex/generic/try_lock.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_GENERIC_TRY_LOCK_HPP #define INCLUDED_SROOK_MUTEX_GENERIC_TRY_LOCK_HPP diff --git a/srook/mutex/guards.hpp b/srook/mutex/guards.hpp index c46bcea..31670d2 100644 --- a/srook/mutex/guards.hpp +++ b/srook/mutex/guards.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_GUARDS_HPP #define INCLUDED_SROOK_THREAD_GUARDS_HPP diff --git a/srook/mutex/guards/detail/lock_tags.hpp b/srook/mutex/guards/detail/lock_tags.hpp index 25518ed..c2703f1 100644 --- a/srook/mutex/guards/detail/lock_tags.hpp +++ b/srook/mutex/guards/detail/lock_tags.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_DETAIL_LOCK_TAGS_HPP #define INCLUDED_SROOK_THREAD_DETAIL_LOCK_TAGS_HPP diff --git a/srook/mutex/guards/lock_guard.hpp b/srook/mutex/guards/lock_guard.hpp index 4f20581..8083b87 100644 --- a/srook/mutex/guards/lock_guard.hpp +++ b/srook/mutex/guards/lock_guard.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_GUARDS_LOCK_GUARD_HPP #define INCLUDED_SROOK_MUTEX_GUARDS_LOCK_GUARD_HPP diff --git a/srook/mutex/guards/scoped_lock.hpp b/srook/mutex/guards/scoped_lock.hpp index 7301cc3..4ed7e6e 100644 --- a/srook/mutex/guards/scoped_lock.hpp +++ b/srook/mutex/guards/scoped_lock.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_GUARDS_SCOPED_LOCK_HPP #define INCLUDED_SROOK_MUTEX_GUARDS_SCOPED_LOCK_HPP #include diff --git a/srook/mutex/guards/unique_lock.hpp b/srook/mutex/guards/unique_lock.hpp index 6b35ad8..b91421a 100644 --- a/srook/mutex/guards/unique_lock.hpp +++ b/srook/mutex/guards/unique_lock.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_GUARDS_UNIQUE_LOCK_HPP #define INCLUDED_SROOK_MUTEX_GUARDS_UNIQUE_LOCK_HPP diff --git a/srook/mutex/includes/lib.hpp b/srook/mutex/includes/lib.hpp index 7d17c11..433d732 100644 --- a/srook/mutex/includes/lib.hpp +++ b/srook/mutex/includes/lib.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_INCLUDES_LIB_HPP #define INCLUDED_SROOK_MUTEX_INCLUDES_LIB_HPP diff --git a/srook/mutex/mutexes.hpp b/srook/mutex/mutexes.hpp index 33fd93a..9f6a2f2 100644 --- a/srook/mutex/mutexes.hpp +++ b/srook/mutex/mutexes.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_MUTEXES_HPP #define INCLUDED_SROOK_MUTEX_MUTEXES_HPP #include diff --git a/srook/mutex/mutexes/detail/mutex_base.hpp b/srook/mutex/mutexes/detail/mutex_base.hpp index 7d0b946..60f76a9 100644 --- a/srook/mutex/mutexes/detail/mutex_base.hpp +++ b/srook/mutex/mutexes/detail/mutex_base.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_DETAIL_MUTEX_BASE_HPP #define INCLUDED_SROOK_THREAD_DETAIL_MUTEX_BASE_HPP diff --git a/srook/mutex/mutexes/detail/recursive_mutex_base.hpp b/srook/mutex/mutexes/detail/recursive_mutex_base.hpp index 7577a6d..c007be5 100644 --- a/srook/mutex/mutexes/detail/recursive_mutex_base.hpp +++ b/srook/mutex/mutexes/detail/recursive_mutex_base.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_DETAIL_RECURSIVE_MUTEX_BASE_HPP #define INCLUDED_SROOK_THREAD_DETAIL_RECURSIVE_MUTEX_BASE_HPP diff --git a/srook/mutex/mutexes/detail/timed_mutex_base.hpp b/srook/mutex/mutexes/detail/timed_mutex_base.hpp index ddf75c7..060d913 100644 --- a/srook/mutex/mutexes/detail/timed_mutex_base.hpp +++ b/srook/mutex/mutexes/detail/timed_mutex_base.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_MUTEXES_DETAIL_TIMED_MUTEX_BASE_HPP #define INCLUDED_SROOK_MUTEX_MUTEXES_DETAIL_TIMED_MUTEX_BASE_HPP diff --git a/srook/mutex/mutexes/mutex.hpp b/srook/mutex/mutexes/mutex.hpp index 940f6f7..3703ff6 100644 --- a/srook/mutex/mutexes/mutex.hpp +++ b/srook/mutex/mutexes/mutex.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_MUTEX_HPP #define INCLUDED_SROOK_MUTEX_MUTEX_HPP diff --git a/srook/mutex/mutexes/recursive_mutex.hpp b/srook/mutex/mutexes/recursive_mutex.hpp index f7cd360..a436404 100644 --- a/srook/mutex/mutexes/recursive_mutex.hpp +++ b/srook/mutex/mutexes/recursive_mutex.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_RECURSIVE_MUTEX_HPP #define INCLUDED_SROOK_MUTEX_RECURSIVE_MUTEX_HPP diff --git a/srook/mutex/mutexes/recursive_timed_mutex.hpp b/srook/mutex/mutexes/recursive_timed_mutex.hpp index 3d86d95..68f1d79 100644 --- a/srook/mutex/mutexes/recursive_timed_mutex.hpp +++ b/srook/mutex/mutexes/recursive_timed_mutex.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_RECURSIVE_TIMED_MUTEX_HPP #define INCLUDED_SROOK_MUTEX_RECURSIVE_TIMED_MUTEX_HPP diff --git a/srook/mutex/mutexes/timed_mutex.hpp b/srook/mutex/mutexes/timed_mutex.hpp index 840b707..c5e2d59 100644 --- a/srook/mutex/mutexes/timed_mutex.hpp +++ b/srook/mutex/mutexes/timed_mutex.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_TIMED_MUTEX_HPP #define INCLUDED_SROOK_MUTEX_TIMED_MUTEX_HPP diff --git a/srook/mutex/once.hpp b/srook/mutex/once.hpp index 79e08e7..20f40ac 100644 --- a/srook/mutex/once.hpp +++ b/srook/mutex/once.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MUTEX_ONCE_HPP #define INCLUDED_SROOK_MUTEX_ONCE_HPP diff --git a/srook/numeric.hpp b/srook/numeric.hpp index 014dcff..f2e732d 100644 --- a/srook/numeric.hpp +++ b/srook/numeric.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_NUMERIC_HPP #define INCLUDED_SROOK_NUMERIC_HPP diff --git a/srook/numeric/accumulate.hpp b/srook/numeric/accumulate.hpp index 16e28bc..d41c858 100644 --- a/srook/numeric/accumulate.hpp +++ b/srook/numeric/accumulate.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_NUMERIC_ACCUMULATE_HPP #define INCLUDED_SROOK_NUMERIC_ACCUMULATE_HPP diff --git a/srook/numeric/algorithm.hpp b/srook/numeric/algorithm.hpp index 8d625a4..4cb4358 100644 --- a/srook/numeric/algorithm.hpp +++ b/srook/numeric/algorithm.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_NUMERIC_ALGORITHM_HPP #define INCLUDED_SROOK_NUMERIC_ALGORITHM_HPP diff --git a/srook/numeric/algorithm/accumulate.hpp b/srook/numeric/algorithm/accumulate.hpp index d13c51b..af5c61e 100644 --- a/srook/numeric/algorithm/accumulate.hpp +++ b/srook/numeric/algorithm/accumulate.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_NUMERIC_ALGORITHM_ACCUMULATE_HPP #define INCLUDED_SROOK_NUMERIC_ALGORITHM_ACCUMULATE_HPP diff --git a/srook/numeric/algorithm/correlation_coefficient.hpp b/srook/numeric/algorithm/correlation_coefficient.hpp index 59959f5..9bff4d6 100644 --- a/srook/numeric/algorithm/correlation_coefficient.hpp +++ b/srook/numeric/algorithm/correlation_coefficient.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_NUMERIC_ALGORITHM_CORRELATION_COFFICIENT_HPP #define INCLUDED_SROOK_NUMERIC_ALGORITHM_CORRELATION_COFFICIENT_HPP diff --git a/srook/numeric/algorithm/detail/config.hpp b/srook/numeric/algorithm/detail/config.hpp index d249436..6b1dd84 100644 --- a/srook/numeric/algorithm/detail/config.hpp +++ b/srook/numeric/algorithm/detail/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_NUMERIC_ALGORITHM_DETAIL_CONFIG_HPP #define INCLUDED_SROOK_NUMERIC_ALGORITHM_DETAIL_CONFIG_HPP diff --git a/srook/numeric/algorithm/inner_product.hpp b/srook/numeric/algorithm/inner_product.hpp index 19551f7..7214d11 100644 --- a/srook/numeric/algorithm/inner_product.hpp +++ b/srook/numeric/algorithm/inner_product.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_NUMERIC_ALGORITHM_INNER_PRODUCT_HPP #define INCLUDED_SROOK_NUMERIC_ALGORITHM_INNER_PRODUCT_HPP diff --git a/srook/numeric/algorithm/iota.hpp b/srook/numeric/algorithm/iota.hpp index 64c3050..e57ca96 100644 --- a/srook/numeric/algorithm/iota.hpp +++ b/srook/numeric/algorithm/iota.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_NUMERIC_ALGORITHM_IOTA_HPP #define INCLUDED_SROOK_NUMERIC_ALGORITHM_IOTA_HPP diff --git a/srook/numeric/detail/config.hpp b/srook/numeric/detail/config.hpp index f154cc7..fec1c91 100644 --- a/srook/numeric/detail/config.hpp +++ b/srook/numeric/detail/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_NUMERIC_DETAIL_CONFIG_HPP #define INCLUDED_SROOK_NUMERIC_DETAIL_CONFIG_HPP diff --git a/srook/numeric/fixed_point.hpp b/srook/numeric/fixed_point.hpp index c006ad6..25f2609 100644 --- a/srook/numeric/fixed_point.hpp +++ b/srook/numeric/fixed_point.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_NUMERIC_FIXED_POINT_HPP #define INCLUDED_SROOK_NUMERIC_FIXED_POINT_HPP diff --git a/srook/numeric/fixed_point/detail/config.hpp b/srook/numeric/fixed_point/detail/config.hpp index 1415e51..90b29e2 100644 --- a/srook/numeric/fixed_point/detail/config.hpp +++ b/srook/numeric/fixed_point/detail/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_NUMERIC_DETAIL_FIXED_POINT_SIZED_CONFIG_HPP #define INCLUDED_SROOK_NUMERIC_DETAIL_FIXED_POINT_SIZED_CONFIG_HPP diff --git a/srook/numeric/fixed_point/detail/fixed_point_declare.hpp b/srook/numeric/fixed_point/detail/fixed_point_declare.hpp index 127b790..4fb978f 100644 --- a/srook/numeric/fixed_point/detail/fixed_point_declare.hpp +++ b/srook/numeric/fixed_point/detail/fixed_point_declare.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_NUMERIC_DETAIL_FIXED_POINT_FIXED_POINT_DECLARE_HPP #define INCLUDED_SROOK_NUMERIC_DETAIL_FIXED_POINT_FIXED_POINT_DECLARE_HPP diff --git a/srook/numeric/fixed_point/fixed_point.hpp b/srook/numeric/fixed_point/fixed_point.hpp index d8b954b..a0c911d 100644 --- a/srook/numeric/fixed_point/fixed_point.hpp +++ b/srook/numeric/fixed_point/fixed_point.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_NUMERIC_FIXED_POINT_FIXED_POINT_HPP #define INCLUDED_SROOK_NUMERIC_FIXED_POINT_FIXED_POINT_HPP diff --git a/srook/numeric/fixed_point/typedefs.hpp b/srook/numeric/fixed_point/typedefs.hpp index e5c77df..13366fb 100644 --- a/srook/numeric/fixed_point/typedefs.hpp +++ b/srook/numeric/fixed_point/typedefs.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_NUMERIC_FIXED_POINT_TYPEDEFS_HPP #define INCLUDED_SROOK_NUMERIC_FIXED_POINT_TYPEDEFS_HPP diff --git a/srook/numeric/inner_product.hpp b/srook/numeric/inner_product.hpp index 626b7ab..e2382af 100644 --- a/srook/numeric/inner_product.hpp +++ b/srook/numeric/inner_product.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_NUMERIC_INNER_PRODUCT_HPP #define INCLUDED_SROOK_NUMERIC_INNER_PRODUCT_HPP diff --git a/srook/optional.hpp b/srook/optional.hpp index 0fd30d2..b1e3509 100644 --- a/srook/optional.hpp +++ b/srook/optional.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_OPTIONAL_HPP #define INCLUDED_SROOK_OPTIONAL_HPP diff --git a/srook/optional/applicative.hpp b/srook/optional/applicative.hpp index 0d7527b..a0ecd04 100644 --- a/srook/optional/applicative.hpp +++ b/srook/optional/applicative.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_OPIONAL_APPLICATIVE_HPP #define INCLUDED_SROOK_OPIONAL_APPLICATIVE_HPP #include diff --git a/srook/optional/core.hpp b/srook/optional/core.hpp index 076b9d2..89beaf4 100644 --- a/srook/optional/core.hpp +++ b/srook/optional/core.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_OPTIONAL_CORE_HPP #define INCLUDED_SROOK_OPTIONAL_CORE_HPP #include diff --git a/srook/optional/exception.hpp b/srook/optional/exception.hpp index 4985d8a..e6ae667 100644 --- a/srook/optional/exception.hpp +++ b/srook/optional/exception.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_OPTIONAL_EXCEPTION_HPP #define INCLUDED_SROOK_OPTIONAL_EXCEPTION_HPP diff --git a/srook/optional/nullopt.hpp b/srook/optional/nullopt.hpp index e0ba8bc..3b869ad 100644 --- a/srook/optional/nullopt.hpp +++ b/srook/optional/nullopt.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_OPTIONAL_NULLOPT_HPP #define INCLUDED_SROOK_OPTIONAL_NULLOPT_HPP #include diff --git a/srook/optional/optional_base.hpp b/srook/optional/optional_base.hpp index 87e5f46..c510401 100644 --- a/srook/optional/optional_base.hpp +++ b/srook/optional/optional_base.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_OPTIONAL_BASE_HPP #define INCLUDED_SROOK_OPTIONAL_BASE_HPP #include diff --git a/srook/optional/optional_payload.hpp b/srook/optional/optional_payload.hpp index 390149e..a04f728 100644 --- a/srook/optional/optional_payload.hpp +++ b/srook/optional/optional_payload.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_OPTIONAL_OPTIONAL_PAYLOAD_HPP #define INCLUDED_SROOK_OPTIONAL_OPTIONAL_PAYLOAD_HPP #include diff --git a/srook/optional/safe_optional_payload.hpp b/srook/optional/safe_optional_payload.hpp index 589c276..8a6adf5 100644 --- a/srook/optional/safe_optional_payload.hpp +++ b/srook/optional/safe_optional_payload.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_OPTIONAL_SAFE_OPTIONAL_PAYLOAD_HPP #define INCLUDED_SROOK_OPTIONAL_SAFE_OPTIONAL_PAYLOAD_HPP diff --git a/srook/optional/set_value_or.hpp b/srook/optional/set_value_or.hpp index 95b4bb4..943fd87 100644 --- a/srook/optional/set_value_or.hpp +++ b/srook/optional/set_value_or.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_OPIONAL_SETTER_HPP #define INCLUDED_SROOK_OPIONAL_SETTER_HPP #if __has_include() diff --git a/srook/plot/gnu/ploter.hpp b/srook/plot/gnu/ploter.hpp index 5511172..bc2f864 100644 --- a/srook/plot/gnu/ploter.hpp +++ b/srook/plot/gnu/ploter.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PLOT_GNU_PLOTER_HPP #define INCLUDED_SROOK_PLOT_GNU_PLOTER_HPP diff --git a/srook/preprocessor.hpp b/srook/preprocessor.hpp index 68cc461..b4abd90 100644 --- a/srook/preprocessor.hpp +++ b/srook/preprocessor.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PREPROCESSOR_HPP #define INCLUDED_SROOK_PREPROCESSOR_HPP diff --git a/srook/preprocessor/at.hpp b/srook/preprocessor/at.hpp index e6d13a3..54c9689 100644 --- a/srook/preprocessor/at.hpp +++ b/srook/preprocessor/at.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PREPROCESSOR_AT_HPP #define INCLUDED_SROOK_PREPROCESSOR_AT_HPP diff --git a/srook/preprocessor/bool.hpp b/srook/preprocessor/bool.hpp index c83a85a..201d881 100644 --- a/srook/preprocessor/bool.hpp +++ b/srook/preprocessor/bool.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PREPROCESSOR_BOOL_HPP #define INCLUDED_SROOK_PREPROCESSOR_BOOL_HPP diff --git a/srook/preprocessor/comparison/equal.hpp b/srook/preprocessor/comparison/equal.hpp index 8757bb8..ae56c17 100644 --- a/srook/preprocessor/comparison/equal.hpp +++ b/srook/preprocessor/comparison/equal.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PREPROCESSOR_EQUAL_HPP #define INCLUDED_SROOK_PREPROCESSOR_EQUAL_HPP diff --git a/srook/preprocessor/concat.hpp b/srook/preprocessor/concat.hpp index dd9fbeb..586f923 100644 --- a/srook/preprocessor/concat.hpp +++ b/srook/preprocessor/concat.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INLCUDED_SROOK_PREPROCESSOR_CONCAT_HPP #define INLCUDED_SROOK_PREPROCESSOR_CONCAT_HPP diff --git a/srook/preprocessor/control/iif.hpp b/srook/preprocessor/control/iif.hpp index a6c5040..ba127f9 100644 --- a/srook/preprocessor/control/iif.hpp +++ b/srook/preprocessor/control/iif.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PREPROCESSOR_CONTROL_IIF_HPP #define INCLUDED_SROOK_PREPROCESSOR_CONTROL_IIF_HPP diff --git a/srook/preprocessor/detail/iterate_def.hpp b/srook/preprocessor/detail/iterate_def.hpp index 357c48e..1bbebb8 100644 --- a/srook/preprocessor/detail/iterate_def.hpp +++ b/srook/preprocessor/detail/iterate_def.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PREPROCESSOR_DETAIL_ITERATE_DEF_HPP #define INCLUDED_SROOK_PREPROCESSOR_DETAIL_ITERATE_DEF_HPP diff --git a/srook/preprocessor/detail/loop_args_delim.hpp b/srook/preprocessor/detail/loop_args_delim.hpp index a49a9ec..b330d2f 100644 --- a/srook/preprocessor/detail/loop_args_delim.hpp +++ b/srook/preprocessor/detail/loop_args_delim.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PREPROCESSOR_DETAIL_LOOP_ARGS_DELIM_HPP #define INCLUDED_SROOK_PREPROCESSOR_DETAIL_LOOP_ARGS_DELIM_HPP diff --git a/srook/preprocessor/detail/loop_comma.hpp b/srook/preprocessor/detail/loop_comma.hpp index 46119a4..9d66082 100644 --- a/srook/preprocessor/detail/loop_comma.hpp +++ b/srook/preprocessor/detail/loop_comma.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PREPROCESSOR_DETAIL_SROOK_PP_LOOP_COMMA_DEF_HPP #define INCLUDED_SROOK_PREPROCESSOR_DETAIL_SROOK_PP_LOOP_COMMA_DEF_HPP diff --git a/srook/preprocessor/detail/loop_delim.hpp b/srook/preprocessor/detail/loop_delim.hpp index d342217..3254d93 100644 --- a/srook/preprocessor/detail/loop_delim.hpp +++ b/srook/preprocessor/detail/loop_delim.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PREPROCESSOR_DETAIL_LOOP_DELIM_HPP #define INCLUDED_SROOK_PREPROCESSOR_DETAIL_LOOP_DELIM_HPP diff --git a/srook/preprocessor/if.hpp b/srook/preprocessor/if.hpp index c0b8a70..f4242e8 100644 --- a/srook/preprocessor/if.hpp +++ b/srook/preprocessor/if.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PREPROCESSOR_IF_HPP #define INCLUDED_SROOK_PREPROCESSOR_IF_HPP diff --git a/srook/preprocessor/is_typename.hpp b/srook/preprocessor/is_typename.hpp index dd7587c..14dd180 100644 --- a/srook/preprocessor/is_typename.hpp +++ b/srook/preprocessor/is_typename.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PREPROCESSOR_IS_TYPENAME_HPP #define INCLUDED_SROOK_PREPROCESSOR_IS_TYPENAME_HPP diff --git a/srook/preprocessor/not.hpp b/srook/preprocessor/not.hpp index 96bb5e9..b3f4d2c 100644 --- a/srook/preprocessor/not.hpp +++ b/srook/preprocessor/not.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PREPROCESSOR_NOT_HPP #define INCLUDED_SROOK_PREPROCESSOR_NOT_HPP diff --git a/srook/preprocessor/va_count.hpp b/srook/preprocessor/va_count.hpp index c356156..4f1d530 100644 --- a/srook/preprocessor/va_count.hpp +++ b/srook/preprocessor/va_count.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PREPROCESSOR_VA_COUNT_HPP #define INCLUDED_SROOK_PREPROCESSOR_VA_COUNT_HPP diff --git a/srook/process.hpp b/srook/process.hpp index 19b8744..414f5f1 100644 --- a/srook/process.hpp +++ b/srook/process.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PROCESS_HPP #define INCLUDED_SROOK_PROCESS_HPP #include diff --git a/srook/process/pclose.hpp b/srook/process/pclose.hpp index e01c214..a998ceb 100644 --- a/srook/process/pclose.hpp +++ b/srook/process/pclose.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PROCESS_PCLOSE_HPP #define INCLUDED_SROOK_PROCESS_PCLOSE_HPP diff --git a/srook/process/perror.hpp b/srook/process/perror.hpp index a210f74..d227cd0 100644 --- a/srook/process/perror.hpp +++ b/srook/process/perror.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PROCESS_PERROR_HPP #define INCLUDED_SROOK_PROCESS_PERROR_HPP diff --git a/srook/process/popen.hpp b/srook/process/popen.hpp index f74b4ba..2b9444d 100644 --- a/srook/process/popen.hpp +++ b/srook/process/popen.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PROCESS_POPEN_HPP #define INCLUDED_SROOK_PROCESS_POPEN_HPP diff --git a/srook/proxy.hpp b/srook/proxy.hpp index 9af238f..4289099 100644 --- a/srook/proxy.hpp +++ b/srook/proxy.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PROXY_HPP #define INCLUDED_SROOK_PROXY_HPP diff --git a/srook/proxy/noncopyable.hpp b/srook/proxy/noncopyable.hpp index 77390a5..190e82f 100644 --- a/srook/proxy/noncopyable.hpp +++ b/srook/proxy/noncopyable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_PROXY_NONCOPYABLE_HPP #define INCLUDED_SROOK_PROXY_NONCOPYABLE_HPP diff --git a/srook/random.hpp b/srook/random.hpp index 6cf3464..b955ccd 100644 --- a/srook/random.hpp +++ b/srook/random.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_RANDOM_HPP #define INCLUDED_SROOK_RANDOM_HPP diff --git a/srook/random/algorithm.hpp b/srook/random/algorithm.hpp index 5127d82..d29b35a 100644 --- a/srook/random/algorithm.hpp +++ b/srook/random/algorithm.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_RANDOM_ALGORITHM_HPP #define INCLUDED_SROOK_RANDOM_ALGORITHM_HPP diff --git a/srook/random/algorithm/sample.hpp b/srook/random/algorithm/sample.hpp index b8d67eb..9f73e4f 100644 --- a/srook/random/algorithm/sample.hpp +++ b/srook/random/algorithm/sample.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_RANDOM_ALGORITHM_SAMPLE_HPP #define INCLUDED_SROOK_RANDOM_ALGORITHM_SAMPLE_HPP diff --git a/srook/random/algorithm/shuffle.hpp b/srook/random/algorithm/shuffle.hpp index afbb8f6..c3e54ac 100644 --- a/srook/random/algorithm/shuffle.hpp +++ b/srook/random/algorithm/shuffle.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_RANDOM_ALGORITHM_SHUFFLE_HPP #define INCLUDED_SROOK_RANDOM_ALGORITHM_SHUFFLE_HPP diff --git a/srook/random/algorithm/shuffle/fisher_yates.hpp b/srook/random/algorithm/shuffle/fisher_yates.hpp index d378d2b..af4c307 100644 --- a/srook/random/algorithm/shuffle/fisher_yates.hpp +++ b/srook/random/algorithm/shuffle/fisher_yates.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_RANDOM_ALGORIHTM_SHUFFLE_FISHER_YATES_HPP #define INCLUDED_SROOK_RANDOM_ALGORIHTM_SHUFFLE_FISHER_YATES_HPP diff --git a/srook/range.hpp b/srook/range.hpp index 06565ba..684f170 100644 --- a/srook/range.hpp +++ b/srook/range.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_RANGE_HPP #define INCLUDED_SROOK_RANGE_HPP diff --git a/srook/range/adaptor.hpp b/srook/range/adaptor.hpp index 8fb84eb..92e1e8d 100644 --- a/srook/range/adaptor.hpp +++ b/srook/range/adaptor.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_RANGE_ADAPTOR_HPP #define INCLUDED_SROOK_RANGE_ADAPTOR_HPP diff --git a/srook/range/adaptor/adaptor_operator.hpp b/srook/range/adaptor/adaptor_operator.hpp index ed83e65..693027f 100644 --- a/srook/range/adaptor/adaptor_operator.hpp +++ b/srook/range/adaptor/adaptor_operator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef SROOK_INCLUDED_ADAPTOR_OPERATOR #define SROOK_INCLUDED_ADAPTOR_OPERATOR #if 0 diff --git a/srook/range/adaptor/copied.hpp b/srook/range/adaptor/copied.hpp index 3770da4..1a19e85 100644 --- a/srook/range/adaptor/copied.hpp +++ b/srook/range/adaptor/copied.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef SROOK_INCLUDED_RANGE_ADAPTOR_COPIED #define SROOK_INCLUDED_RANGE_ADAPTOR_COPIED #include diff --git a/srook/range/adaptor/detail/deduce_iter.hpp b/srook/range/adaptor/detail/deduce_iter.hpp index 71f7c0a..feed948 100644 --- a/srook/range/adaptor/detail/deduce_iter.hpp +++ b/srook/range/adaptor/detail/deduce_iter.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_RANGE_ADAPTOR_DETAIL_DEDUCE_ITER_HPP #define INCLUDED_SROOK_RANGE_ADAPTOR_DETAIL_DEDUCE_ITER_HPP #include diff --git a/srook/range/adaptor/drop.hpp b/srook/range/adaptor/drop.hpp index 5ea4a7a..cc23b76 100644 --- a/srook/range/adaptor/drop.hpp +++ b/srook/range/adaptor/drop.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_RANGE_ADAPTOR_DROP_HPP #define INCLUDED_SROOK_RANGE_ADAPTOR_DROP_HPP #include diff --git a/srook/range/adaptor/drop_while.hpp b/srook/range/adaptor/drop_while.hpp index 3ca0716..d921719 100644 --- a/srook/range/adaptor/drop_while.hpp +++ b/srook/range/adaptor/drop_while.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_RANGE_ADAPTOR_DROP_WHILE_HPP #define INCLUDED_SROOK_RANGE_ADAPTOR_DROP_WHILE_HPP #include diff --git a/srook/range/adaptor/filtered.hpp b/srook/range/adaptor/filtered.hpp index 070abc6..8e1d3d2 100644 --- a/srook/range/adaptor/filtered.hpp +++ b/srook/range/adaptor/filtered.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_ADAPTOR_FILTERED_HPP #define INCLUDED_ADAPTOR_FILTERED_HPP #include diff --git a/srook/range/adaptor/moved.hpp b/srook/range/adaptor/moved.hpp index c6ba97c..97552bc 100644 --- a/srook/range/adaptor/moved.hpp +++ b/srook/range/adaptor/moved.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_RANGE_ADAPTOR_MOVED #define INCLUDED_SROOK_RANGE_ADAPTOR_MOVED #include diff --git a/srook/range/adaptor/reversed.hpp b/srook/range/adaptor/reversed.hpp index 57ae64c..fb85247 100644 --- a/srook/range/adaptor/reversed.hpp +++ b/srook/range/adaptor/reversed.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_RANGE_ADAPTOR_REVERSED_HPP #define INCLUDED_SROOK_RANGE_ADAPTOR_REVERSED_HPP #include diff --git a/srook/range/adaptor/take.hpp b/srook/range/adaptor/take.hpp index a975a29..a7e0510 100644 --- a/srook/range/adaptor/take.hpp +++ b/srook/range/adaptor/take.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_RANGE_ADAPTOR_TAKE_HPP #define INCLUDED_SROOK_RANGE_ADAPTOR_TAKE_HPP #include diff --git a/srook/range/adaptor/take_while.hpp b/srook/range/adaptor/take_while.hpp index f7d2ea0..e1ba381 100644 --- a/srook/range/adaptor/take_while.hpp +++ b/srook/range/adaptor/take_while.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_RANGE_ADAPTOR_TAKE_WHILE_HPP #define INCLUDED_SROOK_RANGE_ADAPTOR_TAKE_WHILE_HPP #include diff --git a/srook/range/adaptor/transformed.hpp b/srook/range/adaptor/transformed.hpp index 752aa38..63f367a 100644 --- a/srook/range/adaptor/transformed.hpp +++ b/srook/range/adaptor/transformed.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_RANGE_ADAPTOR_TRANSFORMED_HPP #define INCLUDED_SROOK_RANGE_ADAPTOR_TRANSFORMED_HPP #include diff --git a/srook/scope/unique_resource.hpp b/srook/scope/unique_resource.hpp index be9adb4..f68c17e 100644 --- a/srook/scope/unique_resource.hpp +++ b/srook/scope/unique_resource.hpp @@ -1,5 +1,5 @@ // This header inspired P0052R5 -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_SCOPE_UNIQUE_RESOURCE_HPP #define INCLUDED_SROOK_SCOPE_UNIQUE_RESOURCE_HPP diff --git a/srook/semaphore.hpp b/srook/semaphore.hpp index aeaa229..79bd11f 100644 --- a/srook/semaphore.hpp +++ b/srook/semaphore.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_SEMAPHORE_HPP #define INCLUDED_SROOK_SEMAPHORE_HPP #include diff --git a/srook/semaphore/binary_semaphore.hpp b/srook/semaphore/binary_semaphore.hpp index 8168e1f..24771f7 100644 --- a/srook/semaphore/binary_semaphore.hpp +++ b/srook/semaphore/binary_semaphore.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_SEMAPHORE_BINARY_SEMAPHORE_HPP #define INCLUDED_SROOK_SEMAPHORE_BINARY_SEMAPHORE_HPP diff --git a/srook/semaphore/binary_timed_semaphore.hpp b/srook/semaphore/binary_timed_semaphore.hpp index a863200..4a85f11 100644 --- a/srook/semaphore/binary_timed_semaphore.hpp +++ b/srook/semaphore/binary_timed_semaphore.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_SEMAPHORE_BINARY_TIMED_SEMAPHORE_HPP #define INCLUDED_SROOK_SEMAPHORE_BINARY_TIMED_SEMAPHORE_HPP diff --git a/srook/semaphore/generic.hpp b/srook/semaphore/generic.hpp index 6b784c1..d22bf28 100644 --- a/srook/semaphore/generic.hpp +++ b/srook/semaphore/generic.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_SEMAPHORE_GENERIC_HPP #define INCLUDED_SROOK_SEMAPHORE_GENERIC_HPP diff --git a/srook/semaphore/generic/down_all.hpp b/srook/semaphore/generic/down_all.hpp index 6b93c32..1e67747 100644 --- a/srook/semaphore/generic/down_all.hpp +++ b/srook/semaphore/generic/down_all.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_SEMAPHORE_GENERIC_DOWN_ALL_HPP #define INCLUDED_SROOK_SEMAPHORE_GENERIC_DOWN_ALL_HPP diff --git a/srook/semaphore/generic/up_all.hpp b/srook/semaphore/generic/up_all.hpp index b2cca10..394f315 100644 --- a/srook/semaphore/generic/up_all.hpp +++ b/srook/semaphore/generic/up_all.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_SEMAPHORE_GENERIC_UP_ALL_HPP #define INCLUDED_SROOK_SEMAPHORE_GENERIC_UP_ALL_HPP diff --git a/srook/semaphore/semaphore.hpp b/srook/semaphore/semaphore.hpp index 85db152..f8cbe97 100644 --- a/srook/semaphore/semaphore.hpp +++ b/srook/semaphore/semaphore.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_SEMAPHOER_SEMAPHORE_HPP #define INCLUDED_SROOK_SEMAPHOER_SEMAPHORE_HPP diff --git a/srook/string.hpp b/srook/string.hpp index 8d5f564..bd38eb3 100644 --- a/srook/string.hpp +++ b/srook/string.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_STRING_HPP #define INCLUDED_STRING_HPP #include diff --git a/srook/string/algorithm/str_replace.hpp b/srook/string/algorithm/str_replace.hpp index b6b1358..8f98444 100644 --- a/srook/string/algorithm/str_replace.hpp +++ b/srook/string/algorithm/str_replace.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_STRING_REPLACE #define INLCUDED_STRING_REPLACE #include diff --git a/srook/string/config/builtin.hpp b/srook/string/config/builtin.hpp index ab903f2..0b99e25 100644 --- a/srook/string/config/builtin.hpp +++ b/srook/string/config/builtin.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_STRING_CONFIG_BUILTIN_HPP #define INCLUDED_SROOK_STRING_CONFIG_BUILTIN_HPP diff --git a/srook/string/make_elements_string.hpp b/srook/string/make_elements_string.hpp index 8c5f873..e50bee9 100644 --- a/srook/string/make_elements_string.hpp +++ b/srook/string/make_elements_string.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_MAKE_ELEMENtS_STRING_HPP #define INCLUDED_MAKE_ELEMENtS_STRING_HPP diff --git a/srook/string/str_replace.hpp b/srook/string/str_replace.hpp index b6b1358..8f98444 100644 --- a/srook/string/str_replace.hpp +++ b/srook/string/str_replace.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_STRING_REPLACE #define INLCUDED_STRING_REPLACE #include diff --git a/srook/string/strerror.hpp b/srook/string/strerror.hpp index 218bf4d..5e27014 100644 --- a/srook/string/strerror.hpp +++ b/srook/string/strerror.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_STRING_STRERROR_HPP #define INCLUDED_SROOK_STRING_STRERROR_HPP diff --git a/srook/string/to_string.hpp b/srook/string/to_string.hpp index e1def09..388ca21 100644 --- a/srook/string/to_string.hpp +++ b/srook/string/to_string.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_STRING_TO_STRING_HPP #define INCLUDED_SROOK_STRING_TO_STRING_HPP diff --git a/srook/thread.hpp b/srook/thread.hpp index 2714e6f..25b1c88 100644 --- a/srook/thread.hpp +++ b/srook/thread.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_HPP #define INCLUDED_SROOK_THREAD_HPP diff --git a/srook/thread/decl.hpp b/srook/thread/decl.hpp index 54c49ee..a922e66 100644 --- a/srook/thread/decl.hpp +++ b/srook/thread/decl.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_DECL_HPP #define INCLUDED_SROOK_THREAD_DECL_HPP diff --git a/srook/thread/detail/support/primitive.hpp b/srook/thread/detail/support/primitive.hpp index 80c2822..8e90f61 100644 --- a/srook/thread/detail/support/primitive.hpp +++ b/srook/thread/detail/support/primitive.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_DETAIL_SUPPORT_PRIMITIVE_HPP #define INCLUDED_SROOK_THREAD_DETAIL_SUPPORT_PRIMITIVE_HPP diff --git a/srook/thread/detail/support/types.hpp b/srook/thread/detail/support/types.hpp index ba1f547..90c3895 100644 --- a/srook/thread/detail/support/types.hpp +++ b/srook/thread/detail/support/types.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_DETAIL_SUPPORT_TYPES_HPP #define INCLUDED_SROOK_THREAD_DETAIL_SUPPORT_TYPES_HPP diff --git a/srook/thread/detail/support/types/pthread.hpp b/srook/thread/detail/support/types/pthread.hpp index 9f732c6..11ff592 100644 --- a/srook/thread/detail/support/types/pthread.hpp +++ b/srook/thread/detail/support/types/pthread.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_DETAIL_SUPPORT_TYPES_PTHREAD_HPP #define INCLUDED_SROOK_THREAD_DETAIL_SUPPORT_TYPES_PTHREAD_HPP diff --git a/srook/thread/detail/support/types/win32.hpp b/srook/thread/detail/support/types/win32.hpp index 7b2db82..153056a 100644 --- a/srook/thread/detail/support/types/win32.hpp +++ b/srook/thread/detail/support/types/win32.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_DETAIL_SUPPORT_TYPES_WIN32_HPP #define INCLUDED_SROOK_THREAD_DETAIL_SUPPORT_TYPES_WIN32_HPP diff --git a/srook/thread/detail/this_thread.hpp b/srook/thread/detail/this_thread.hpp index 463f816..345197e 100644 --- a/srook/thread/detail/this_thread.hpp +++ b/srook/thread/detail/this_thread.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_DETAIL_THIS_THREAD_HPP #define INCLUDED_SROOK_THREAD_DETAIL_THIS_THREAD_HPP diff --git a/srook/thread/detail/thread_base.hpp b/srook/thread/detail/thread_base.hpp index 8372b80..6b2cba8 100644 --- a/srook/thread/detail/thread_base.hpp +++ b/srook/thread/detail/thread_base.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_DETAIL_THREAD_BASE_HPP #define INCLUDED_SROOK_THREAD_DETAIL_THREAD_BASE_HPP #include diff --git a/srook/thread/safe.hpp b/srook/thread/safe.hpp index 8637284..35e528b 100644 --- a/srook/thread/safe.hpp +++ b/srook/thread/safe.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_SAFE_HPP #define INCLUDED_SROOK_THREAD_SAFE_HPP diff --git a/srook/thread/safe/container.hpp b/srook/thread/safe/container.hpp index 8cd466d..7e927cc 100644 --- a/srook/thread/safe/container.hpp +++ b/srook/thread/safe/container.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_SAFE_CONTAINER_HPP #define INCLUDED_SROOK_THREAD_SAFE_CONTAINER_HPP diff --git a/srook/thread/safe/container/config.hpp b/srook/thread/safe/container/config.hpp index 59821d4..62c6ff2 100644 --- a/srook/thread/safe/container/config.hpp +++ b/srook/thread/safe/container/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_SAFE_CONTAINER_CONFIG_HPP #define INCLUDED_SROOK_THREAD_SAFE_CONTAINER_CONFIG_HPP diff --git a/srook/thread/safe/container/priority_queue.hpp b/srook/thread/safe/container/priority_queue.hpp index 855d79b..cd5c676 100644 --- a/srook/thread/safe/container/priority_queue.hpp +++ b/srook/thread/safe/container/priority_queue.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_SAFE_CONTAINER_PRIORITY_QUEUE_HPP #define INCLUDED_SROOK_THREAD_SAFE_CONTAINER_PRIORITY_QUEUE_HPP diff --git a/srook/thread/safe/container/queue.hpp b/srook/thread/safe/container/queue.hpp index 1d4499e..9777f4b 100644 --- a/srook/thread/safe/container/queue.hpp +++ b/srook/thread/safe/container/queue.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_SAFE_CONTAINER_QUEUE_HPP #define INCLUDED_SROOK_THREAD_SAFE_CONTAINER_QUEUE_HPP diff --git a/srook/thread/safe/container/stack.hpp b/srook/thread/safe/container/stack.hpp index 54fbdf8..2f4e046 100644 --- a/srook/thread/safe/container/stack.hpp +++ b/srook/thread/safe/container/stack.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_SAFE_CONTAINER_STACK_HPP #define INCLUDED_SROOK_THREAD_SAFE_CONTAINER_STACK_HPP diff --git a/srook/thread/safe/memory.hpp b/srook/thread/safe/memory.hpp index 234595e..95e56cb 100644 --- a/srook/thread/safe/memory.hpp +++ b/srook/thread/safe/memory.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_SAFE_MEMORY_HPP #define INCLUDED_SROOK_THREAD_SAFE_MEMORY_HPP diff --git a/srook/thread/safe/memory/singleton.hpp b/srook/thread/safe/memory/singleton.hpp index fea647a..2acf77a 100644 --- a/srook/thread/safe/memory/singleton.hpp +++ b/srook/thread/safe/memory/singleton.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_SAFE_MEMORY_SINGLETON_SINGLETON_ADAPTOR_HPP #define INCLUDED_SROOK_THREAD_SAFE_MEMORY_SINGLETON_SINGLETON_ADAPTOR_HPP diff --git a/srook/thread/safe/memory/singleton/singleton_adaptor.hpp b/srook/thread/safe/memory/singleton/singleton_adaptor.hpp index efe8cdc..2645571 100644 --- a/srook/thread/safe/memory/singleton/singleton_adaptor.hpp +++ b/srook/thread/safe/memory/singleton/singleton_adaptor.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_THREAD_SAFE_MEMORY_SINGLETON_THREAD_SAFE_SINGLETON_ADAPTOR_HPP #define INCLUDED_SROOK_THREAD_SAFE_MEMORY_SINGLETON_THREAD_SAFE_SINGLETON_ADAPTOR_HPP #include diff --git a/srook/tmpl.hpp b/srook/tmpl.hpp index 7a96d9e..5d98413 100644 --- a/srook/tmpl.hpp +++ b/srook/tmpl.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_HPP #define INCLUDED_SROOK_TMPL_HPP diff --git a/srook/tmpl/vt.hpp b/srook/tmpl/vt.hpp index 3e487a9..7ce53d9 100644 --- a/srook/tmpl/vt.hpp +++ b/srook/tmpl/vt.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_HPP #define INCLUDED_SROOK_TMPL_VT_HPP diff --git a/srook/tmpl/vt/all.hpp b/srook/tmpl/vt/all.hpp index 59cbc4b..6914bcf 100644 --- a/srook/tmpl/vt/all.hpp +++ b/srook/tmpl/vt/all.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_ALL_HPP #define INCLUDED_SROOK_TMPL_VT_ALL_HPP diff --git a/srook/tmpl/vt/and.hpp b/srook/tmpl/vt/and.hpp index 6d4a731..20a2203 100644 --- a/srook/tmpl/vt/and.hpp +++ b/srook/tmpl/vt/and.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_AND_HPP #define INCLUDED_SROOK_TMPL_VT_AND_HPP diff --git a/srook/tmpl/vt/any.hpp b/srook/tmpl/vt/any.hpp index 79cac63..4650b69 100644 --- a/srook/tmpl/vt/any.hpp +++ b/srook/tmpl/vt/any.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_ANY_HPP #define INCLUDED_SROOK_TMPL_VT_ANY_HPP diff --git a/srook/tmpl/vt/apply.hpp b/srook/tmpl/vt/apply.hpp index 15b4a2b..859a481 100644 --- a/srook/tmpl/vt/apply.hpp +++ b/srook/tmpl/vt/apply.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_APPLY_HPP #define INCLUDED_SROOK_TMPL_VT_APPLY_HPP diff --git a/srook/tmpl/vt/at.hpp b/srook/tmpl/vt/at.hpp index bdf2ab2..81cf35f 100644 --- a/srook/tmpl/vt/at.hpp +++ b/srook/tmpl/vt/at.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_AT_HPP #define INCLUDED_SROOK_TMPL_VT_AT_HPP diff --git a/srook/tmpl/vt/bind.hpp b/srook/tmpl/vt/bind.hpp index 7559643..49d366b 100644 --- a/srook/tmpl/vt/bind.hpp +++ b/srook/tmpl/vt/bind.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_BIND_HPP #define INCLUDED_SROOK_TMPL_VT_BIND_HPP diff --git a/srook/tmpl/vt/boolean.hpp b/srook/tmpl/vt/boolean.hpp index 8bfaec9..dad31cf 100644 --- a/srook/tmpl/vt/boolean.hpp +++ b/srook/tmpl/vt/boolean.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_BOOLEAN_HPP #define INCLUDED_SROOK_TMPL_VT_BOOLEAN_HPP diff --git a/srook/tmpl/vt/compare.hpp b/srook/tmpl/vt/compare.hpp index 22e0d71..838f832 100644 --- a/srook/tmpl/vt/compare.hpp +++ b/srook/tmpl/vt/compare.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_COMPARE_HPP #define INCLUDED_SROOK_TMPL_VT_COMPARE_HPP diff --git a/srook/tmpl/vt/compare/eq.hpp b/srook/tmpl/vt/compare/eq.hpp index 51ca50c..9211d56 100644 --- a/srook/tmpl/vt/compare/eq.hpp +++ b/srook/tmpl/vt/compare/eq.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_COMPARISON_EQ_HPP #define INCLUDED_SROOK_TMPL_VT_COMPARISON_EQ_HPP diff --git a/srook/tmpl/vt/compare/geq.hpp b/srook/tmpl/vt/compare/geq.hpp index 3c27ad3..6f7e2be 100644 --- a/srook/tmpl/vt/compare/geq.hpp +++ b/srook/tmpl/vt/compare/geq.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_COMPARISON_GEQ_HPP #define INCLUDED_SROOK_TMPL_VT_COMPARISON_GEQ_HPP diff --git a/srook/tmpl/vt/compare/gt.hpp b/srook/tmpl/vt/compare/gt.hpp index 07860d5..ec446b2 100644 --- a/srook/tmpl/vt/compare/gt.hpp +++ b/srook/tmpl/vt/compare/gt.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_COMPARISON_GT_HPP #define INCLUDED_SROOK_TMPL_VT_COMPARISON_GT_HPP diff --git a/srook/tmpl/vt/compare/leq.hpp b/srook/tmpl/vt/compare/leq.hpp index e52131e..53ae5e8 100644 --- a/srook/tmpl/vt/compare/leq.hpp +++ b/srook/tmpl/vt/compare/leq.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_COMPARISON_LEQ_HPP #define INCLUDED_SROOK_TMPL_VT_COMPARISON_LEQ_HPP diff --git a/srook/tmpl/vt/compare/lt.hpp b/srook/tmpl/vt/compare/lt.hpp index f7b931f..dda09b1 100644 --- a/srook/tmpl/vt/compare/lt.hpp +++ b/srook/tmpl/vt/compare/lt.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_COMPARISON_LT_HPP #define INCLUDED_SROOK_TMPL_VT_COMPARISON_LT_HPP diff --git a/srook/tmpl/vt/compare/neq.hpp b/srook/tmpl/vt/compare/neq.hpp index e8caed0..f378255 100644 --- a/srook/tmpl/vt/compare/neq.hpp +++ b/srook/tmpl/vt/compare/neq.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_COMPARISON_NEQ_HPP #define INCLUDED_SROOK_TMPL_VT_COMPARISON_NEQ_HPP diff --git a/srook/tmpl/vt/composition.hpp b/srook/tmpl/vt/composition.hpp index f9ec90e..e772bcb 100644 --- a/srook/tmpl/vt/composition.hpp +++ b/srook/tmpl/vt/composition.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_COMPOSITION_HPP #define INCLUDED_SROOK_TMPL_VT_COMPOSITION_HPP diff --git a/srook/tmpl/vt/concat.hpp b/srook/tmpl/vt/concat.hpp index 08864d8..3ad1e8d 100644 --- a/srook/tmpl/vt/concat.hpp +++ b/srook/tmpl/vt/concat.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_CONCAT_HPP #define INCLUDED_SROOK_TMPL_VT_CONCAT_HPP diff --git a/srook/tmpl/vt/cons.hpp b/srook/tmpl/vt/cons.hpp index b5783e6..6eae82a 100644 --- a/srook/tmpl/vt/cons.hpp +++ b/srook/tmpl/vt/cons.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_CONS_HPP #define INCLUDED_SROOK_TMPL_VT_CONS_HPP diff --git a/srook/tmpl/vt/defines.hpp b/srook/tmpl/vt/defines.hpp index 3e8a0f8..8f003cc 100644 --- a/srook/tmpl/vt/defines.hpp +++ b/srook/tmpl/vt/defines.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_DEFINES_HPP #define INCLUDED_SROOK_TMPL_VT_DEFINES_HPP diff --git a/srook/tmpl/vt/defines/map.hpp b/srook/tmpl/vt/defines/map.hpp index 2f3c6eb..30349c4 100644 --- a/srook/tmpl/vt/defines/map.hpp +++ b/srook/tmpl/vt/defines/map.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_DEFINES_MAP_HPP #define INCLUDED_SROOK_TMPL_VT_DEFINES_MAP_HPP diff --git a/srook/tmpl/vt/detail/config.hpp b/srook/tmpl/vt/detail/config.hpp index bf8ab7b..42db5cc 100644 --- a/srook/tmpl/vt/detail/config.hpp +++ b/srook/tmpl/vt/detail/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_DETAIL_CONFIG_HPP #define INCLUDED_SROOK_TMPL_VT_DETAIL_CONFIG_HPP diff --git a/srook/tmpl/vt/drop.hpp b/srook/tmpl/vt/drop.hpp index d627af9..9e20587 100644 --- a/srook/tmpl/vt/drop.hpp +++ b/srook/tmpl/vt/drop.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_DROP_HPP #define INCLUDED_SROOK_TMPL_VT_DROP_HPP diff --git a/srook/tmpl/vt/drop_while.hpp b/srook/tmpl/vt/drop_while.hpp index 3a2bbe7..2d6b25b 100644 --- a/srook/tmpl/vt/drop_while.hpp +++ b/srook/tmpl/vt/drop_while.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_DROP_WHILE_HPP #define INCLUDED_SROOK_TMPL_VT_DROP_WHILE_HPP diff --git a/srook/tmpl/vt/drop_whileD.hpp b/srook/tmpl/vt/drop_whileD.hpp index ab18fbe..7d3b10a 100644 --- a/srook/tmpl/vt/drop_whileD.hpp +++ b/srook/tmpl/vt/drop_whileD.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_DROP_WHILED_HPP #define INCLUDED_SROOK_TMPL_VT_DROP_WHILED_HPP diff --git a/srook/tmpl/vt/erase.hpp b/srook/tmpl/vt/erase.hpp index 421722d..a9b743d 100644 --- a/srook/tmpl/vt/erase.hpp +++ b/srook/tmpl/vt/erase.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_ERASE_HPP #define INCLUDED_SROOK_TMPL_VT_ERASE_HPP diff --git a/srook/tmpl/vt/erase_all.hpp b/srook/tmpl/vt/erase_all.hpp index 9b92d27..f53039e 100644 --- a/srook/tmpl/vt/erase_all.hpp +++ b/srook/tmpl/vt/erase_all.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_ERASE_ALL_HPP #define INCLUDED_SROOK_TMPL_VT_ERASE_ALL_HPP diff --git a/srook/tmpl/vt/erase_at.hpp b/srook/tmpl/vt/erase_at.hpp index ce1a211..f61d9a1 100644 --- a/srook/tmpl/vt/erase_at.hpp +++ b/srook/tmpl/vt/erase_at.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_ERASE_AT_HPP #define INCLUDED_SROOK_TMPL_VT_ERASE_AT_HPP diff --git a/srook/tmpl/vt/erase_if.hpp b/srook/tmpl/vt/erase_if.hpp index 3377431..b78e354 100644 --- a/srook/tmpl/vt/erase_if.hpp +++ b/srook/tmpl/vt/erase_if.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_ERASE_IF_HPP #define INCLUDED_SROOK_TMPL_VT_ERASE_IF_HPP diff --git a/srook/tmpl/vt/erase_packer.hpp b/srook/tmpl/vt/erase_packer.hpp index 9e6cdef..033b8c4 100644 --- a/srook/tmpl/vt/erase_packer.hpp +++ b/srook/tmpl/vt/erase_packer.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_ERASE_PACKER_HPP #define INCLUDED_SROOK_TMPL_VT_ERASE_PACKER_HPP diff --git a/srook/tmpl/vt/filter.hpp b/srook/tmpl/vt/filter.hpp index e6805f1..e671cf6 100644 --- a/srook/tmpl/vt/filter.hpp +++ b/srook/tmpl/vt/filter.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_FILTER_HPP #define INCLUDED_SROOK_TMPL_VT_FILTER_HPP diff --git a/srook/tmpl/vt/filterD.hpp b/srook/tmpl/vt/filterD.hpp index cf1deb5..b1ae465 100644 --- a/srook/tmpl/vt/filterD.hpp +++ b/srook/tmpl/vt/filterD.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_FILTERD_HPP #define INCLUDED_SROOK_TMPL_VT_FILTERD_HPP diff --git a/srook/tmpl/vt/first.hpp b/srook/tmpl/vt/first.hpp index d1fa8f6..1b08065 100644 --- a/srook/tmpl/vt/first.hpp +++ b/srook/tmpl/vt/first.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_FIRST_HPP #define INCLUDED_SROOK_TMPL_VT_FIRST_HPP diff --git a/srook/tmpl/vt/foldl.hpp b/srook/tmpl/vt/foldl.hpp index 77d0a3c..0378c65 100644 --- a/srook/tmpl/vt/foldl.hpp +++ b/srook/tmpl/vt/foldl.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_FOLDL_HPP #define INCLUDED_SROOK_TMPL_VT_FOLDL_HPP diff --git a/srook/tmpl/vt/foldr.hpp b/srook/tmpl/vt/foldr.hpp index 7f7e2ed..6abd182 100644 --- a/srook/tmpl/vt/foldr.hpp +++ b/srook/tmpl/vt/foldr.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_FOLDR_HPP #define INCLUDED_SROOK_TMPL_VT_FOLDR_HPP diff --git a/srook/tmpl/vt/foldr1.hpp b/srook/tmpl/vt/foldr1.hpp index dc96fc7..8999aa5 100644 --- a/srook/tmpl/vt/foldr1.hpp +++ b/srook/tmpl/vt/foldr1.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_FOLDR1_HPP #define INCLUDED_SROOK_TMPL_VT_FOLDR1_HPP diff --git a/srook/tmpl/vt/group.hpp b/srook/tmpl/vt/group.hpp index 67b39e8..1378bf8 100644 --- a/srook/tmpl/vt/group.hpp +++ b/srook/tmpl/vt/group.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_GROUP_HPP #define INCLUDED_SROOK_TMPL_VT_GROUP_HPP diff --git a/srook/tmpl/vt/group_by.hpp b/srook/tmpl/vt/group_by.hpp index 0d86bc0..b2984b3 100644 --- a/srook/tmpl/vt/group_by.hpp +++ b/srook/tmpl/vt/group_by.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_GROUP_BY_HPP #define INCLUDED_SROOK_TMPL_VT_GROUP_BY_HPP diff --git a/srook/tmpl/vt/head.hpp b/srook/tmpl/vt/head.hpp index 515031c..093fd42 100644 --- a/srook/tmpl/vt/head.hpp +++ b/srook/tmpl/vt/head.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_HEAD_HPP #define INCLUDED_SROOK_TMPL_VT_HEAD_HPP diff --git a/srook/tmpl/vt/ignore.hpp b/srook/tmpl/vt/ignore.hpp index 0193c1e..58c4b26 100644 --- a/srook/tmpl/vt/ignore.hpp +++ b/srook/tmpl/vt/ignore.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_IGNORE_HPP #define INCLUDED_SROOK_TMPL_VT_IGNORE_HPP diff --git a/srook/tmpl/vt/index_of.hpp b/srook/tmpl/vt/index_of.hpp index a40fe42..1c5f7e8 100644 --- a/srook/tmpl/vt/index_of.hpp +++ b/srook/tmpl/vt/index_of.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_INDEX_OF_HPP #define INCLUDED_SROOK_TMPL_VT_INDEX_OF_HPP diff --git a/srook/tmpl/vt/init.hpp b/srook/tmpl/vt/init.hpp index db7bc51..472376a 100644 --- a/srook/tmpl/vt/init.hpp +++ b/srook/tmpl/vt/init.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_INIT_HPP #define INCLUDED_SROOK_TMPL_VT_INIT_HPP diff --git a/srook/tmpl/vt/insert_at.hpp b/srook/tmpl/vt/insert_at.hpp index 3d0f018..8a1afe5 100644 --- a/srook/tmpl/vt/insert_at.hpp +++ b/srook/tmpl/vt/insert_at.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_INSERT_AT_HPP #define INCLUDED_SROOK_TMPL_VT_INSERT_AT_HPP diff --git a/srook/tmpl/vt/intercalate.hpp b/srook/tmpl/vt/intercalate.hpp index 72a0311..4eb30d4 100644 --- a/srook/tmpl/vt/intercalate.hpp +++ b/srook/tmpl/vt/intercalate.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_INTERCALATE_HPP #define INCLUDED_SROOK_TMPL_VT_INTERCALATE_HPP diff --git a/srook/tmpl/vt/intersperse.hpp b/srook/tmpl/vt/intersperse.hpp index be999a1..ba5f01a 100644 --- a/srook/tmpl/vt/intersperse.hpp +++ b/srook/tmpl/vt/intersperse.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_INTERSPERSE_HPP #define INCLUDED_SROOK_TMPL_VT_INTERSPERSE_HPP diff --git a/srook/tmpl/vt/is_contained_in.hpp b/srook/tmpl/vt/is_contained_in.hpp index 99ea4b9..42200a4 100644 --- a/srook/tmpl/vt/is_contained_in.hpp +++ b/srook/tmpl/vt/is_contained_in.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_IS_CONTAINED_IN_HPP #define INCLUDED_SROOK_TMPL_VT_IS_CONTAINED_IN_HPP diff --git a/srook/tmpl/vt/is_contained_in_like.hpp b/srook/tmpl/vt/is_contained_in_like.hpp index 6c32141..1a9ca46 100644 --- a/srook/tmpl/vt/is_contained_in_like.hpp +++ b/srook/tmpl/vt/is_contained_in_like.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_IS_CONTAINED_IN_LIKE_HPP #define INCLUDED_SROOK_TMPL_VT_IS_CONTAINED_IN_LIKE_HPP diff --git a/srook/tmpl/vt/is_infix_of.hpp b/srook/tmpl/vt/is_infix_of.hpp index 4213e5c..b1d1f91 100644 --- a/srook/tmpl/vt/is_infix_of.hpp +++ b/srook/tmpl/vt/is_infix_of.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_IS_INFIX_OF_HPP #define INCLUDED_SROOK_TMPL_VT_IS_INFIX_OF_HPP diff --git a/srook/tmpl/vt/is_prefix_of.hpp b/srook/tmpl/vt/is_prefix_of.hpp index ad540f1..e1f7262 100644 --- a/srook/tmpl/vt/is_prefix_of.hpp +++ b/srook/tmpl/vt/is_prefix_of.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_IS_PREFIX_OF_HPP #define INCLUDED_SROOK_TMPL_VT_IS_PREFIX_OF_HPP diff --git a/srook/tmpl/vt/iterate.hpp b/srook/tmpl/vt/iterate.hpp index e609f1e..a03d0a3 100644 --- a/srook/tmpl/vt/iterate.hpp +++ b/srook/tmpl/vt/iterate.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_ITERATE_HPP #define INCLUDED_SROOK_TMPL_VT_ITERATE_HPP diff --git a/srook/tmpl/vt/last.hpp b/srook/tmpl/vt/last.hpp index f273ca1..3f5017d 100644 --- a/srook/tmpl/vt/last.hpp +++ b/srook/tmpl/vt/last.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_LAST_HPP #define INCLUDED_SROOK_TMPL_VT_LAST_HPP diff --git a/srook/tmpl/vt/lat.hpp b/srook/tmpl/vt/lat.hpp index 4e635c5..6f72a40 100644 --- a/srook/tmpl/vt/lat.hpp +++ b/srook/tmpl/vt/lat.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_LAT_HPP #define INCLUDED_SROOK_TMPL_VT_LAT_HPP diff --git a/srook/tmpl/vt/lookup.hpp b/srook/tmpl/vt/lookup.hpp index ab0caa1..aa1a95c 100644 --- a/srook/tmpl/vt/lookup.hpp +++ b/srook/tmpl/vt/lookup.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_LOOKUP_HPP #define INCLUDED_SROOK_TMPL_VT_LOOKUP_HPP diff --git a/srook/tmpl/vt/map.hpp b/srook/tmpl/vt/map.hpp index 91b025f..fcc4dbb 100644 --- a/srook/tmpl/vt/map.hpp +++ b/srook/tmpl/vt/map.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_MAP_HPP #define INCLUDED_SROOK_TMPL_VT_MAP_HPP diff --git a/srook/tmpl/vt/mapD.hpp b/srook/tmpl/vt/mapD.hpp index cdd930d..f6a84d0 100644 --- a/srook/tmpl/vt/mapD.hpp +++ b/srook/tmpl/vt/mapD.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_MAPD_HPP #define INCLUDED_SROOK_TMPL_VT_MAPD_HPP diff --git a/srook/tmpl/vt/max.hpp b/srook/tmpl/vt/max.hpp index 28ef0ad..0a97178 100644 --- a/srook/tmpl/vt/max.hpp +++ b/srook/tmpl/vt/max.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_MAX_HPP #define INCLUDED_SROOK_TMPL_VT_MAX_HPP diff --git a/srook/tmpl/vt/min.hpp b/srook/tmpl/vt/min.hpp index b092fbf..4270629 100644 --- a/srook/tmpl/vt/min.hpp +++ b/srook/tmpl/vt/min.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_MIN_HPP #define INCLUDED_SROOK_TMPL_VT_MIN_HPP diff --git a/srook/tmpl/vt/move_at.hpp b/srook/tmpl/vt/move_at.hpp index cbb9657..8c98b4f 100644 --- a/srook/tmpl/vt/move_at.hpp +++ b/srook/tmpl/vt/move_at.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_MOVE_AT_HPP #define INCLUDED_SROOK_TMPL_VT_MOVE_AT_HPP diff --git a/srook/tmpl/vt/move_head.hpp b/srook/tmpl/vt/move_head.hpp index f526334..b5dc5af 100644 --- a/srook/tmpl/vt/move_head.hpp +++ b/srook/tmpl/vt/move_head.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_MOVE_HEAD_HPP #define INCLUDED_SROOK_TMPL_VT_MOVE_HEAD_HPP diff --git a/srook/tmpl/vt/move_tail.hpp b/srook/tmpl/vt/move_tail.hpp index 35eb80c..19c6996 100644 --- a/srook/tmpl/vt/move_tail.hpp +++ b/srook/tmpl/vt/move_tail.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_MOVE_TAIL_HPP #define INCLUDED_SROOK_TMPL_VT_MOVE_TAIL_HPP diff --git a/srook/tmpl/vt/not_fn.hpp b/srook/tmpl/vt/not_fn.hpp index ad0d3bb..6d8e1fc 100644 --- a/srook/tmpl/vt/not_fn.hpp +++ b/srook/tmpl/vt/not_fn.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_NOT_FN_HPP #define INCLUDED_SROOK_TMPL_VT_NOT_FN_HPP diff --git a/srook/tmpl/vt/null.hpp b/srook/tmpl/vt/null.hpp index 2f61f9d..7d985bb 100644 --- a/srook/tmpl/vt/null.hpp +++ b/srook/tmpl/vt/null.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_NULL_HPP #define INCLUDED_SROOK_TMPL_VT_NULL_HPP diff --git a/srook/tmpl/vt/or.hpp b/srook/tmpl/vt/or.hpp index dd323f6..b1d61b7 100644 --- a/srook/tmpl/vt/or.hpp +++ b/srook/tmpl/vt/or.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_OR_HPP #define INCLUDED_SROOK_TMPL_VT_OR_HPP diff --git a/srook/tmpl/vt/partial_head.hpp b/srook/tmpl/vt/partial_head.hpp index 7ff88b6..8be8867 100644 --- a/srook/tmpl/vt/partial_head.hpp +++ b/srook/tmpl/vt/partial_head.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_PARTIAL_HEAD_HPP #define INCLUDED_SROOK_TMPL_VT_PARTIAL_HEAD_HPP diff --git a/srook/tmpl/vt/partial_tail.hpp b/srook/tmpl/vt/partial_tail.hpp index 17dadbc..e468138 100644 --- a/srook/tmpl/vt/partial_tail.hpp +++ b/srook/tmpl/vt/partial_tail.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_PARTIAL_TAIL_HPP #define INCLUDED_SROOK_TMPL_VT_PARTIAL_TAIL_HPP diff --git a/srook/tmpl/vt/pop_back.hpp b/srook/tmpl/vt/pop_back.hpp index 1ba5ce0..138b236 100644 --- a/srook/tmpl/vt/pop_back.hpp +++ b/srook/tmpl/vt/pop_back.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_POP_BACK_HPP #define INCLUDED_SROOK_TMPL_VT_POP_BACK_HPP diff --git a/srook/tmpl/vt/pop_front.hpp b/srook/tmpl/vt/pop_front.hpp index e5fd363..11aaa79 100644 --- a/srook/tmpl/vt/pop_front.hpp +++ b/srook/tmpl/vt/pop_front.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_POP_FRONT_HPP #define INCLUDED_SROOK_TMPL_VT_POP_FRONT_HPP diff --git a/srook/tmpl/vt/primes.hpp b/srook/tmpl/vt/primes.hpp index 05fa3b2..9925100 100644 --- a/srook/tmpl/vt/primes.hpp +++ b/srook/tmpl/vt/primes.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_PRIMES_HPP #define INCLUDED_SROOK_TMPL_VT_PRIMES_HPP diff --git a/srook/tmpl/vt/proxy_by.hpp b/srook/tmpl/vt/proxy_by.hpp index b8bbf50..ab8e361 100644 --- a/srook/tmpl/vt/proxy_by.hpp +++ b/srook/tmpl/vt/proxy_by.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_PROXY_BY_PROXY_BY_HPP #define INCLUDED_SROOK_TMPL_VT_PROXY_BY_PROXY_BY_HPP diff --git a/srook/tmpl/vt/proxy_by/proxy_by_commons.hpp b/srook/tmpl/vt/proxy_by/proxy_by_commons.hpp index 624b39d..e112d94 100644 --- a/srook/tmpl/vt/proxy_by/proxy_by_commons.hpp +++ b/srook/tmpl/vt/proxy_by/proxy_by_commons.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_PROXY_BY_PROXY_BY_COMMONDS_HPP #define INCLUDED_SROOK_TMPL_VT_PROXY_BY_PROXY_BY_COMMONDS_HPP diff --git a/srook/tmpl/vt/proxy_by/proxy_by_def.hpp b/srook/tmpl/vt/proxy_by/proxy_by_def.hpp index 41fc0da..97d9ddc 100644 --- a/srook/tmpl/vt/proxy_by/proxy_by_def.hpp +++ b/srook/tmpl/vt/proxy_by/proxy_by_def.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_PROXY_BY_PROXY_BY_DEF_HPP #define INCLUDED_SROOK_TMPL_VT_PROXY_BY_PROXY_BY_DEF_HPP diff --git a/srook/tmpl/vt/replace.hpp b/srook/tmpl/vt/replace.hpp index c99624c..a1b8ea7 100644 --- a/srook/tmpl/vt/replace.hpp +++ b/srook/tmpl/vt/replace.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_REPLACE_HPP #define INCLUDED_SROOK_TMPL_VT_REPLACE_HPP diff --git a/srook/tmpl/vt/replace_all.hpp b/srook/tmpl/vt/replace_all.hpp index 1d5c233..c656cf6 100644 --- a/srook/tmpl/vt/replace_all.hpp +++ b/srook/tmpl/vt/replace_all.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_REPLACE_ALL_HPP #define INCLUDED_SROOK_TMPL_VT_REPLACE_ALL_HPP diff --git a/srook/tmpl/vt/replace_all_like.hpp b/srook/tmpl/vt/replace_all_like.hpp index 8f2a8fa..3601c8f 100644 --- a/srook/tmpl/vt/replace_all_like.hpp +++ b/srook/tmpl/vt/replace_all_like.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_REPLACE_ALL_LIKE_HPP #define INCLUDED_SROOK_TMPL_VT_REPLACE_ALL_LIKE_HPP diff --git a/srook/tmpl/vt/replicate.hpp b/srook/tmpl/vt/replicate.hpp index 3d7b3ca..88bcedb 100644 --- a/srook/tmpl/vt/replicate.hpp +++ b/srook/tmpl/vt/replicate.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_REPLIICATE_HPP #define INCLUDED_SROOK_TMPL_VT_REPLIICATE_HPP diff --git a/srook/tmpl/vt/reverse.hpp b/srook/tmpl/vt/reverse.hpp index f134c9d..b5ca74f 100644 --- a/srook/tmpl/vt/reverse.hpp +++ b/srook/tmpl/vt/reverse.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_REVERSE_HPP #define INCLUDED_SROOK_TMPL_VT_REVERSE_HPP diff --git a/srook/tmpl/vt/select.hpp b/srook/tmpl/vt/select.hpp index e4dbd07..b1422f3 100644 --- a/srook/tmpl/vt/select.hpp +++ b/srook/tmpl/vt/select.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_SELECT_HPP #define INCLUDED_SROOK_TMPL_VT_SELECT_HPP diff --git a/srook/tmpl/vt/set_difference.hpp b/srook/tmpl/vt/set_difference.hpp index e86a222..a7275e6 100644 --- a/srook/tmpl/vt/set_difference.hpp +++ b/srook/tmpl/vt/set_difference.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_SET_DIFFERENCE_HPP #define INCLUDED_SROOK_TMPL_VT_SET_DIFFERENCE_HPP diff --git a/srook/tmpl/vt/set_product.hpp b/srook/tmpl/vt/set_product.hpp index 4534e1d..d8f1cac 100644 --- a/srook/tmpl/vt/set_product.hpp +++ b/srook/tmpl/vt/set_product.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_SET_PRODUCT_HPP #define INCLUDED_SROOK_TMPL_VT_SET_PRODUCT_HPP diff --git a/srook/tmpl/vt/set_union.hpp b/srook/tmpl/vt/set_union.hpp index b6cb955..b22bdc1 100644 --- a/srook/tmpl/vt/set_union.hpp +++ b/srook/tmpl/vt/set_union.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_SET_UNION_HPP #define INCLUDED_SROOK_TMPL_VT_SET_UNION_HPP diff --git a/srook/tmpl/vt/size.hpp b/srook/tmpl/vt/size.hpp index a2160b5..ffc2389 100644 --- a/srook/tmpl/vt/size.hpp +++ b/srook/tmpl/vt/size.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_SIZE_HPP #define INCLUDED_SROOK_TMPL_VT_SIZE_HPP diff --git a/srook/tmpl/vt/size_compare.hpp b/srook/tmpl/vt/size_compare.hpp index 6f2ab8a..71998f1 100644 --- a/srook/tmpl/vt/size_compare.hpp +++ b/srook/tmpl/vt/size_compare.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_SIZE_COMPARE_HPP #define INCLUDED_SROOK_TMPL_VT_SIZE_COMPARE_HPP diff --git a/srook/tmpl/vt/size_compare/eq.hpp b/srook/tmpl/vt/size_compare/eq.hpp index 841a9a6..dde8ee2 100644 --- a/srook/tmpl/vt/size_compare/eq.hpp +++ b/srook/tmpl/vt/size_compare/eq.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_COMPARISON_SIZE_EQ_HPP #define INCLUDED_SROOK_TMPL_VT_COMPARISON_SIZE_EQ_HPP diff --git a/srook/tmpl/vt/size_compare/geq.hpp b/srook/tmpl/vt/size_compare/geq.hpp index ea07257..b129763 100644 --- a/srook/tmpl/vt/size_compare/geq.hpp +++ b/srook/tmpl/vt/size_compare/geq.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_COMPARISON_SIZE_GEQ_HPP #define INCLUDED_SROOK_TMPL_VT_COMPARISON_SIZE_GEQ_HPP diff --git a/srook/tmpl/vt/size_compare/gt.hpp b/srook/tmpl/vt/size_compare/gt.hpp index a7d50f2..16bc1b4 100644 --- a/srook/tmpl/vt/size_compare/gt.hpp +++ b/srook/tmpl/vt/size_compare/gt.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_COMPARISON_SIZE_GT_HPP #define INCLUDED_SROOK_TMPL_VT_COMPARISON_SIZE_GT_HPP diff --git a/srook/tmpl/vt/size_compare/leq.hpp b/srook/tmpl/vt/size_compare/leq.hpp index f3865ce..d6ef1b5 100644 --- a/srook/tmpl/vt/size_compare/leq.hpp +++ b/srook/tmpl/vt/size_compare/leq.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_COMPARISON_SIZE_LEQ_HPP #define INCLUDED_SROOK_TMPL_VT_COMPARISON_SIZE_LEQ_HPP diff --git a/srook/tmpl/vt/size_compare/lt.hpp b/srook/tmpl/vt/size_compare/lt.hpp index 6b4a789..263bfb4 100644 --- a/srook/tmpl/vt/size_compare/lt.hpp +++ b/srook/tmpl/vt/size_compare/lt.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_COMPARISON_SIZE_LT_HPP #define INCLUDED_SROOK_TMPL_VT_COMPARISON_SIZE_LT_HPP diff --git a/srook/tmpl/vt/size_compare/neq.hpp b/srook/tmpl/vt/size_compare/neq.hpp index 2193699..ad34cd5 100644 --- a/srook/tmpl/vt/size_compare/neq.hpp +++ b/srook/tmpl/vt/size_compare/neq.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_COMPARISON_SIZE_NEQ_HPP #define INCLUDED_SROOK_TMPL_VT_COMPARISON_SIZE_NEQ_HPP diff --git a/srook/tmpl/vt/size_eq.hpp b/srook/tmpl/vt/size_eq.hpp index b444ec7..a1014e2 100644 --- a/srook/tmpl/vt/size_eq.hpp +++ b/srook/tmpl/vt/size_eq.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_SIZE_EQ_HPP #define INCLUDED_SROOK_TMPL_VT_SIZE_EQ_HPP diff --git a/srook/tmpl/vt/size_max.hpp b/srook/tmpl/vt/size_max.hpp index b04f540..c00611f 100644 --- a/srook/tmpl/vt/size_max.hpp +++ b/srook/tmpl/vt/size_max.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_SIZE_MAX_HPP #define INCLUDED_SROOK_TMPL_VT_SIZE_MAX_HPP diff --git a/srook/tmpl/vt/size_min.hpp b/srook/tmpl/vt/size_min.hpp index dc24d31..4ec4c58 100644 --- a/srook/tmpl/vt/size_min.hpp +++ b/srook/tmpl/vt/size_min.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_SIZE_MIN_HPP #define INCLUDED_SROOK_TMPL_VT_SIZE_MIN_HPP diff --git a/srook/tmpl/vt/sort.hpp b/srook/tmpl/vt/sort.hpp index 700f29e..049f6a6 100644 --- a/srook/tmpl/vt/sort.hpp +++ b/srook/tmpl/vt/sort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_SORT_HPP #define INCLUDED_SROOK_TMPL_VT_SORT_HPP diff --git a/srook/tmpl/vt/sort/bsort.hpp b/srook/tmpl/vt/sort/bsort.hpp index fb0292e..2298a8d 100644 --- a/srook/tmpl/vt/sort/bsort.hpp +++ b/srook/tmpl/vt/sort/bsort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_BSORT_HPP #define INCLUDED_SROOK_TMPL_VT_BSORT_HPP diff --git a/srook/tmpl/vt/sort/isort.hpp b/srook/tmpl/vt/sort/isort.hpp index 8a8b9f7..58095fc 100644 --- a/srook/tmpl/vt/sort/isort.hpp +++ b/srook/tmpl/vt/sort/isort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_ISORT_HPP #define INCLUDED_SROOK_TMPL_VT_ISORT_HPP diff --git a/srook/tmpl/vt/sort/msort.hpp b/srook/tmpl/vt/sort/msort.hpp index db86b95..2a6b0d0 100644 --- a/srook/tmpl/vt/sort/msort.hpp +++ b/srook/tmpl/vt/sort/msort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_MSORT_HPP #define INCLUDED_SROOK_TMPL_VT_MSORT_HPP diff --git a/srook/tmpl/vt/sort/qsort.hpp b/srook/tmpl/vt/sort/qsort.hpp index 23f73f3..2fa6c63 100644 --- a/srook/tmpl/vt/sort/qsort.hpp +++ b/srook/tmpl/vt/sort/qsort.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_QSORT_HPP #define INCLUDED_SROOK_TMPL_VT_QSORT_HPP diff --git a/srook/tmpl/vt/swap_at.hpp b/srook/tmpl/vt/swap_at.hpp index 13f7bbc..20cffea 100644 --- a/srook/tmpl/vt/swap_at.hpp +++ b/srook/tmpl/vt/swap_at.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_SWAP_AT_HPP #define INCLUDED_SROOK_TMPL_VT_SWAP_AT_HPP diff --git a/srook/tmpl/vt/swap_at_specified.hpp b/srook/tmpl/vt/swap_at_specified.hpp index fe16efd..24e5f2a 100644 --- a/srook/tmpl/vt/swap_at_specified.hpp +++ b/srook/tmpl/vt/swap_at_specified.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_SWAP_AT_SPECIFIED_HPP #define INCLUDED_SROOK_TMPL_VT_SWAP_AT_SPECIFIED_HPP diff --git a/srook/tmpl/vt/tail.hpp b/srook/tmpl/vt/tail.hpp index d258252..25278f8 100644 --- a/srook/tmpl/vt/tail.hpp +++ b/srook/tmpl/vt/tail.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_TAIL_HPP #define INCLUDED_SROOK_TMPL_VT_TAIL_HPP diff --git a/srook/tmpl/vt/tails.hpp b/srook/tmpl/vt/tails.hpp index bf67e28..413837f 100644 --- a/srook/tmpl/vt/tails.hpp +++ b/srook/tmpl/vt/tails.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_TAILS_HPP #define INCLUDED_SROOK_TMPL_VT_TAILS_HPP diff --git a/srook/tmpl/vt/take.hpp b/srook/tmpl/vt/take.hpp index caf7870..00efc44 100644 --- a/srook/tmpl/vt/take.hpp +++ b/srook/tmpl/vt/take.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_TAKE_HPP #define INCLUDED_SROOK_TMPL_VT_TAKE_HPP diff --git a/srook/tmpl/vt/take_while.hpp b/srook/tmpl/vt/take_while.hpp index 025337c..2832e80 100644 --- a/srook/tmpl/vt/take_while.hpp +++ b/srook/tmpl/vt/take_while.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_TAKE_WHILE_HPP #define INCLUDED_SROOK_TMPL_VT_TAKE_WHILE_HPP diff --git a/srook/tmpl/vt/take_whileD.hpp b/srook/tmpl/vt/take_whileD.hpp index d6962bf..161116d 100644 --- a/srook/tmpl/vt/take_whileD.hpp +++ b/srook/tmpl/vt/take_whileD.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_TAKE_WHILED_HPP #define INCLUDED_SROOK_TMPL_VT_TAKE_WHILED_HPP diff --git a/srook/tmpl/vt/transfer.hpp b/srook/tmpl/vt/transfer.hpp index 8e67e2a..034b7fe 100644 --- a/srook/tmpl/vt/transfer.hpp +++ b/srook/tmpl/vt/transfer.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_TRANSFER_HPP #define INCLUDED_SROOK_TMPL_VT_TRANSFER_HPP diff --git a/srook/tmpl/vt/transpose.hpp b/srook/tmpl/vt/transpose.hpp index 4a75f05..1a9e92d 100644 --- a/srook/tmpl/vt/transpose.hpp +++ b/srook/tmpl/vt/transpose.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_TRANSPOSE_HPP #define INCLUDED_SROOK_TMPL_VT_TRANSPOSE_HPP diff --git a/srook/tmpl/vt/tt_proxy.hpp b/srook/tmpl/vt/tt_proxy.hpp index 89abf7c..b5d1549 100644 --- a/srook/tmpl/vt/tt_proxy.hpp +++ b/srook/tmpl/vt/tt_proxy.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_TYPE_PROXY_HPP #define INCLUDED_SROOK_TMPL_VT_TYPE_PROXY_HPP diff --git a/srook/tmpl/vt/unique.hpp b/srook/tmpl/vt/unique.hpp index 8eda30e..ddd2fb5 100644 --- a/srook/tmpl/vt/unique.hpp +++ b/srook/tmpl/vt/unique.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_UNIQUE_HPP #define INCLUDED_SROOK_TMPL_VT_UNIQUE_HPP diff --git a/srook/tmpl/vt/zip.hpp b/srook/tmpl/vt/zip.hpp index 55ba117..4e861d8 100644 --- a/srook/tmpl/vt/zip.hpp +++ b/srook/tmpl/vt/zip.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_ZIP_HPP #define INCLUDED_SROOK_TMPL_VT_ZIP_HPP diff --git a/srook/tmpl/vt/zip_with.hpp b/srook/tmpl/vt/zip_with.hpp index 499d7f6..751873f 100644 --- a/srook/tmpl/vt/zip_with.hpp +++ b/srook/tmpl/vt/zip_with.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_VT_ZIP_WITH_HPP #define INCLUDED_SROOK_TMPL_VT_ZIP_WITH_HPP diff --git a/srook/tuple.hpp b/srook/tuple.hpp index d01ec2f..a2180d2 100644 --- a/srook/tuple.hpp +++ b/srook/tuple.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_HPP #define INCLUDED_SROOK_TUPLE_HPP #include diff --git a/srook/tuple/algorithm.hpp b/srook/tuple/algorithm.hpp index 4bc9777..58a9103 100644 --- a/srook/tuple/algorithm.hpp +++ b/srook/tuple/algorithm.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_ALGORITHM_HPP #define INCLUDED_SROOK_TUPLE_ALGORITHM_HPP diff --git a/srook/tuple/algorithm/apply.hpp b/srook/tuple/algorithm/apply.hpp index 55da634..9a5a8b1 100644 --- a/srook/tuple/algorithm/apply.hpp +++ b/srook/tuple/algorithm/apply.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_ALGORITHM_APPLY_HPP #define INCLUDED_SROOK_TUPLE_ALGORITHM_APPLY_HPP #include diff --git a/srook/tuple/algorithm/deprecated/split.hpp b/srook/tuple/algorithm/deprecated/split.hpp index 24c4063..0666866 100644 --- a/srook/tuple/algorithm/deprecated/split.hpp +++ b/srook/tuple/algorithm/deprecated/split.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_SPLIT_HPP #define INCLUDED_SROOK_TUPLE_SPLIT_HPP #include diff --git a/srook/tuple/algorithm/drop.hpp b/srook/tuple/algorithm/drop.hpp index 4b9a693..c8fe3d6 100644 --- a/srook/tuple/algorithm/drop.hpp +++ b/srook/tuple/algorithm/drop.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_ALGORITHM_DROP_HPP #define INCLUDED_SROOK_TUPLE_ALGORITHM_DROP_HPP diff --git a/srook/tuple/algorithm/erase.hpp b/srook/tuple/algorithm/erase.hpp index 8aaaffc..82d982f 100644 --- a/srook/tuple/algorithm/erase.hpp +++ b/srook/tuple/algorithm/erase.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_ERASE_HPP #define INCLUDED_SROOK_TUPLE_ERASE_HPP #include diff --git a/srook/tuple/algorithm/erase_at.hpp b/srook/tuple/algorithm/erase_at.hpp index 4bc9a16..0dd11c0 100644 --- a/srook/tuple/algorithm/erase_at.hpp +++ b/srook/tuple/algorithm/erase_at.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_ERASE_AT_HPP #define INCLUDED_SROOK_TUPLE_ERASE_AT_HPP #include diff --git a/srook/tuple/algorithm/filter_type.hpp b/srook/tuple/algorithm/filter_type.hpp index 82f8cf0..7bdb2e7 100644 --- a/srook/tuple/algorithm/filter_type.hpp +++ b/srook/tuple/algorithm/filter_type.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_FILTER_TYPE_HPP #define INCLUDED_SROOK_TUPLE_FILTER_TYPE_HPP #include diff --git a/srook/tuple/algorithm/foldl.hpp b/srook/tuple/algorithm/foldl.hpp index fcc8d20..89fce6a 100644 --- a/srook/tuple/algorithm/foldl.hpp +++ b/srook/tuple/algorithm/foldl.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_ALGORITHM_FOLDL_HPP #define INCLUDED_SROOK_TUPLE_ALGORITHM_FOLDL_HPP diff --git a/srook/tuple/algorithm/foldl1.hpp b/srook/tuple/algorithm/foldl1.hpp index 5cf24a2..a5784a0 100644 --- a/srook/tuple/algorithm/foldl1.hpp +++ b/srook/tuple/algorithm/foldl1.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_ALGORITHM_FOLDL1_HPP #define INCLUDED_SROOK_TUPLE_ALGORITHM_FOLDL1_HPP diff --git a/srook/tuple/algorithm/foldr.hpp b/srook/tuple/algorithm/foldr.hpp index 38f953f..f8146ba 100644 --- a/srook/tuple/algorithm/foldr.hpp +++ b/srook/tuple/algorithm/foldr.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_ALGORITHM_FOLDR_HPP #define INCLUDED_SROOK_TUPLE_ALGORITHM_FOLDR_HPP diff --git a/srook/tuple/algorithm/foldr1.hpp b/srook/tuple/algorithm/foldr1.hpp index 0983b2d..20335de 100644 --- a/srook/tuple/algorithm/foldr1.hpp +++ b/srook/tuple/algorithm/foldr1.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_ALGORITHM_FOLDR1_HPP #define INCLUDED_SROOK_TUPLE_ALGORITHM_FOLDR1_HPP diff --git a/srook/tuple/algorithm/iterate.hpp b/srook/tuple/algorithm/iterate.hpp index 9b7fdb2..cbefddd 100644 --- a/srook/tuple/algorithm/iterate.hpp +++ b/srook/tuple/algorithm/iterate.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_ALROTIHM_ITERATE_HPP #define INCLUDED_SROOK_TUPLE_ALROTIHM_ITERATE_HPP diff --git a/srook/tuple/algorithm/map.hpp b/srook/tuple/algorithm/map.hpp index 0a52dbd..87e008a 100644 --- a/srook/tuple/algorithm/map.hpp +++ b/srook/tuple/algorithm/map.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_ALGORITHM_MAP_HPP #define INCLUDED_SROOK_TUPLE_ALGORITHM_MAP_HPP #include diff --git a/srook/tuple/algorithm/replicate.hpp b/srook/tuple/algorithm/replicate.hpp index a4b9475..4d9d901 100644 --- a/srook/tuple/algorithm/replicate.hpp +++ b/srook/tuple/algorithm/replicate.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_REPLICATE_HPP #define INCLUDED_SROOK_TUPLE_REPLICATE_HPP #include diff --git a/srook/tuple/algorithm/reverse.hpp b/srook/tuple/algorithm/reverse.hpp index dc07c05..959168b 100644 --- a/srook/tuple/algorithm/reverse.hpp +++ b/srook/tuple/algorithm/reverse.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_REVERSE_HPP #define INCLUDED_SROOK_TUPLE_REVERSE_HPP #include diff --git a/srook/tuple/algorithm/rotate.hpp b/srook/tuple/algorithm/rotate.hpp index cc7f664..f49fd93 100644 --- a/srook/tuple/algorithm/rotate.hpp +++ b/srook/tuple/algorithm/rotate.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_ROTATE_HPP #define INCLUDED_SROOK_TUPLE_ROTATE_HPP #include diff --git a/srook/tuple/algorithm/split.hpp b/srook/tuple/algorithm/split.hpp index 94a8330..b272607 100644 --- a/srook/tuple/algorithm/split.hpp +++ b/srook/tuple/algorithm/split.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_ALGORITHM_SPLIT_HPP #define INCLUDED_SROOK_TUPLE_ALGORITHM_SPLIT_HPP diff --git a/srook/tuple/algorithm/swap.hpp b/srook/tuple/algorithm/swap.hpp index cd9fcec..cd217d7 100644 --- a/srook/tuple/algorithm/swap.hpp +++ b/srook/tuple/algorithm/swap.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MATH_MATRIX_ELEMENTARY_SWAP_HPP #define INCLUDED_SROOK_MATH_MATRIX_ELEMENTARY_SWAP_HPP #include diff --git a/srook/tuple/algorithm/take.hpp b/srook/tuple/algorithm/take.hpp index e7121ea..c0b3cba 100644 --- a/srook/tuple/algorithm/take.hpp +++ b/srook/tuple/algorithm/take.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_ALGORITHM_TAKE_HPP #define INCLUDED_SROOK_TUPLE_ALGORITHM_TAKE_HPP diff --git a/srook/tuple/algorithm/zip_with.hpp b/srook/tuple/algorithm/zip_with.hpp index fddd83e..d973ed3 100644 --- a/srook/tuple/algorithm/zip_with.hpp +++ b/srook/tuple/algorithm/zip_with.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2018 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_ALGORITHM_ZIP_WITH_HPP #define INCLUDED_SROOK_TUPLE_ALGORITHM_ZIP_WITH_HPP diff --git a/srook/tuple/numeric.hpp b/srook/tuple/numeric.hpp index 4d415f8..ccf9e41 100644 --- a/srook/tuple/numeric.hpp +++ b/srook/tuple/numeric.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_NUMERIC_HPP #define INCLUDED_SROOK_TUPLE_NUMERIC_HPP diff --git a/srook/tuple/numeric/vector_operation.hpp b/srook/tuple/numeric/vector_operation.hpp index bdb4940..f556507 100644 --- a/srook/tuple/numeric/vector_operation.hpp +++ b/srook/tuple/numeric/vector_operation.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_VECTOR_OPERATION_HPP #define INCLUDED_SROOK_TUPLE_VECTOR_OPERATION_HPP #include diff --git a/srook/tuple/utility.hpp b/srook/tuple/utility.hpp index 04945e4..f4c248a 100644 --- a/srook/tuple/utility.hpp +++ b/srook/tuple/utility.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_UTILITY_HPP #define INCLUDED_SROOK_TUPLE_UTILITY_HPP diff --git a/srook/tuple/utility/ampersand.hpp b/srook/tuple/utility/ampersand.hpp index 5ce0749..7756763 100644 --- a/srook/tuple/utility/ampersand.hpp +++ b/srook/tuple/utility/ampersand.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_UTILITY_AMPERSAND_HPP #define INCLUDED_SROOK_TUPLE_UTILITY_AMPERSAND_HPP diff --git a/srook/tuple/utility/curry.hpp b/srook/tuple/utility/curry.hpp index 4e5dc1e..7fbd556 100644 --- a/srook/tuple/utility/curry.hpp +++ b/srook/tuple/utility/curry.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_UTILITY_CURRY_HPP #define INCLUDED_SROOK_TUPLE_UTILITY_CURRY_HPP diff --git a/srook/tuple/utility/detail/utils.hpp b/srook/tuple/utility/detail/utils.hpp index 6133165..bf4f55c 100644 --- a/srook/tuple/utility/detail/utils.hpp +++ b/srook/tuple/utility/detail/utils.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_UTILITY_DETAIL_UTILS_HPP #define INCLUDED_SROOK_TUPLE_UTILITY_DETAIL_UTILS_HPP diff --git a/srook/tuple/utility/drop.hpp b/srook/tuple/utility/drop.hpp index fea12f8..5768fd8 100644 --- a/srook/tuple/utility/drop.hpp +++ b/srook/tuple/utility/drop.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_UTILITY_DROP_HPP #define INCLUDED_SROOK_TUPLE_UTILITY_DROP_HPP diff --git a/srook/tuple/utility/dupe.hpp b/srook/tuple/utility/dupe.hpp index 2faf437..6b6def8 100644 --- a/srook/tuple/utility/dupe.hpp +++ b/srook/tuple/utility/dupe.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_UTILITY_DUPE_HPP #define INCLUDED_SROOK_TUPLE_UTILITY_DUPE_HPP diff --git a/srook/tuple/utility/nth.hpp b/srook/tuple/utility/nth.hpp index 75dd14d..991c1ac 100644 --- a/srook/tuple/utility/nth.hpp +++ b/srook/tuple/utility/nth.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_UTILITY_NTH_HPP #define INCLUDED_SROOK_TUPLE_UTILITY_NTH_HPP diff --git a/srook/tuple/utility/pipeop.hpp b/srook/tuple/utility/pipeop.hpp index 6d770fa..2f365b3 100644 --- a/srook/tuple/utility/pipeop.hpp +++ b/srook/tuple/utility/pipeop.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_UTILITY_PIPEOP_HPP #define INCLUDED_SROOK_TUPLE_UTILITY_PIPEOP_HPP diff --git a/srook/tuple/utility/take.hpp b/srook/tuple/utility/take.hpp index 31a0b77..68eff78 100644 --- a/srook/tuple/utility/take.hpp +++ b/srook/tuple/utility/take.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_UTILITY_TAKE_HPP #define INCLUDED_SROOK_TUPLE_UTILITY_TAKE_HPP diff --git a/srook/tuple/utility/uncurry.hpp b/srook/tuple/utility/uncurry.hpp index 9ddd430..3fbec1c 100644 --- a/srook/tuple/utility/uncurry.hpp +++ b/srook/tuple/utility/uncurry.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TUPLE_UTILITY_UNCURRY_HPP #define INCLUDED_SROOK_TUPLE_UTILITY_UNCURRY_HPP diff --git a/srook/type_traits.hpp b/srook/type_traits.hpp index a48fee7..cff6350 100644 --- a/srook/type_traits.hpp +++ b/srook/type_traits.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_HPP #define INCLUDED_SROOK_TYPE_TRAITS_HPP #include diff --git a/srook/type_traits/add_const.hpp b/srook/type_traits/add_const.hpp index a111642..0dc68f2 100644 --- a/srook/type_traits/add_const.hpp +++ b/srook/type_traits/add_const.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_TYPETRAITS_ADD_CONST_HPP #define INCLUDED_SROOK_MPL_TYPETRAITS_ADD_CONST_HPP #include diff --git a/srook/type_traits/add_cv.hpp b/srook/type_traits/add_cv.hpp index ed99711..9350dcb 100644 --- a/srook/type_traits/add_cv.hpp +++ b/srook/type_traits/add_cv.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_TYPETRAITS_ADD_CV_HPP #define INCLUDED_SROOK_MPL_TYPETRAITS_ADD_CV_HPP #include diff --git a/srook/type_traits/add_lvalue_reference.hpp b/srook/type_traits/add_lvalue_reference.hpp index 253a831..8eb91b6 100644 --- a/srook/type_traits/add_lvalue_reference.hpp +++ b/srook/type_traits/add_lvalue_reference.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_ADD_LVALUE_REFERENCE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_ADD_LVALUE_REFERENCE_HPP #include diff --git a/srook/type_traits/add_pointer.hpp b/srook/type_traits/add_pointer.hpp index 50db51c..92f05b5 100644 --- a/srook/type_traits/add_pointer.hpp +++ b/srook/type_traits/add_pointer.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_TYPETRAITS_ADD_POINTER_HPP #define INCLUDED_SROOK_MPL_TYPETRAITS_ADD_POINTER_HPP #include diff --git a/srook/type_traits/add_rvalue_reference.hpp b/srook/type_traits/add_rvalue_reference.hpp index b0dce9b..d3bd077 100644 --- a/srook/type_traits/add_rvalue_reference.hpp +++ b/srook/type_traits/add_rvalue_reference.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_ADD_RVLAUE_REFERENCE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_ADD_RVLAUE_REFERENCE_HPP #include diff --git a/srook/type_traits/add_volatile.hpp b/srook/type_traits/add_volatile.hpp index 8e5d2f6..26cfd63 100644 --- a/srook/type_traits/add_volatile.hpp +++ b/srook/type_traits/add_volatile.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_TYPETRAITS_ADD_VOLATILE_HPP #define INCLUDED_SROOK_MPL_TYPETRAITS_ADD_VOLATILE_HPP #include diff --git a/srook/type_traits/aligned_storage.hpp b/srook/type_traits/aligned_storage.hpp index e1480aa..a0b3c97 100644 --- a/srook/type_traits/aligned_storage.hpp +++ b/srook/type_traits/aligned_storage.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_ALIGNED_STORAGE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_ALIGNED_STORAGE_HPP diff --git a/srook/type_traits/aligned_union.hpp b/srook/type_traits/aligned_union.hpp index 1faff21..db510a5 100644 --- a/srook/type_traits/aligned_union.hpp +++ b/srook/type_traits/aligned_union.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_ALIGNED_UNION_HPP #define INCLUDED_SROOK_TYPE_TRAITS_ALIGNED_UNION_HPP diff --git a/srook/type_traits/alignment_of.hpp b/srook/type_traits/alignment_of.hpp index dc56207..f9201c9 100644 --- a/srook/type_traits/alignment_of.hpp +++ b/srook/type_traits/alignment_of.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_ALIGNMENT_OF_HPP #define INCLUDED_SROOK_TYPE_TRAITS_ALIGNMENT_OF_HPP diff --git a/srook/type_traits/arguments.hpp b/srook/type_traits/arguments.hpp index 7dde2c7..e3ddd38 100644 --- a/srook/type_traits/arguments.hpp +++ b/srook/type_traits/arguments.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_ARGUMENTS_HPP #define INCLUDED_SROOK_TYPE_TRAITS_ARGUMENTS_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/bool_constant.hpp b/srook/type_traits/bool_constant.hpp index 8631472..0c73cb5 100644 --- a/srook/type_traits/bool_constant.hpp +++ b/srook/type_traits/bool_constant.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_BOOL_CONSTANT_HPP #define INCLUDED_SROOK_TYPE_TRAITS_BOOL_CONSTANT_HPP diff --git a/srook/type_traits/clock.hpp b/srook/type_traits/clock.hpp index 2c54d09..05ba47e 100644 --- a/srook/type_traits/clock.hpp +++ b/srook/type_traits/clock.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_TYPETRAITS_CLOCK_HPP #define INCLUDED_SROOK_MPL_TYPETRAITS_CLOCK_HPP diff --git a/srook/type_traits/clock/is_clock.hpp b/srook/type_traits/clock/is_clock.hpp index a92c540..09d214c 100644 --- a/srook/type_traits/clock/is_clock.hpp +++ b/srook/type_traits/clock/is_clock.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_TYPETRAITS_CLOCK_IS_CLOCK_HPP #define INCLUDED_SROOK_MPL_TYPETRAITS_CLOCK_IS_CLOCK_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/clock/is_trivial_clock.hpp b/srook/type_traits/clock/is_trivial_clock.hpp index 0b10642..ecd15a7 100644 --- a/srook/type_traits/clock/is_trivial_clock.hpp +++ b/srook/type_traits/clock/is_trivial_clock.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_TYPETRAITS_CLOCK_IS_TRIVIAL_CLOCK_HPP #define INCLUDED_SROOK_MPL_TYPETRAITS_CLOCK_IS_TRIVIAL_CLOCK_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/concepts.hpp b/srook/type_traits/concepts.hpp index 9ea51f0..1fe781e 100644 --- a/srook/type_traits/concepts.hpp +++ b/srook/type_traits/concepts.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_CONCEPTS_HPP #define INCLUDED_SROOK_TYPE_TRAITS_CONCEPTS_HPP diff --git a/srook/type_traits/concepts/cxx17/invoke.hpp b/srook/type_traits/concepts/cxx17/invoke.hpp index 5dea3ca..c99d0a8 100644 --- a/srook/type_traits/concepts/cxx17/invoke.hpp +++ b/srook/type_traits/concepts/cxx17/invoke.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_CONCEPT_INVOKE_CONCEPT_HPP #define INCLUDED_SROOK_TYPE_TRAITS_CONCEPT_INVOKE_CONCEPT_HPP #include diff --git a/srook/type_traits/conditional.hpp b/srook/type_traits/conditional.hpp index e7d277b..24d2e0f 100644 --- a/srook/type_traits/conditional.hpp +++ b/srook/type_traits/conditional.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRIATS_CONDITIONAL_HPP #define INCLUDED_SROOK_TYPE_TRIATS_CONDITIONAL_HPP #include diff --git a/srook/type_traits/conjunction.hpp b/srook/type_traits/conjunction.hpp index 2a27bf6..ad03e88 100644 --- a/srook/type_traits/conjunction.hpp +++ b/srook/type_traits/conjunction.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_CONJUNCTION_HPP #define INCLUDED_SROOK_TYPE_TRAITS_CONJUNCTION_HPP #include diff --git a/srook/type_traits/copy_move_able.hpp b/srook/type_traits/copy_move_able.hpp index 0084131..c57a408 100644 --- a/srook/type_traits/copy_move_able.hpp +++ b/srook/type_traits/copy_move_able.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_TYPE_TRAITS_COPY_MOVE_ABLE #define INCLUDED_TYPE_TRAITS_COPY_MOVE_ABLE #include diff --git a/srook/type_traits/decay.hpp b/srook/type_traits/decay.hpp index 8ab4510..4214554 100644 --- a/srook/type_traits/decay.hpp +++ b/srook/type_traits/decay.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_DECAY_HPP #define INCLUDED_SROOK_TYPE_TRAITS_DECAY_HPP #include diff --git a/srook/type_traits/derivation_invoke_result.hpp b/srook/type_traits/derivation_invoke_result.hpp index 561aec8..5c737b6 100644 --- a/srook/type_traits/derivation_invoke_result.hpp +++ b/srook/type_traits/derivation_invoke_result.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_DERIVATION_INVOKE_RESULT_HPP #define INCLUDED_SROOK_TYPE_TRAITS_DERIVATION_INVOKE_RESULT_HPP #include diff --git a/srook/type_traits/detail.hpp b/srook/type_traits/detail.hpp index c662819..fc3db2f 100644 --- a/srook/type_traits/detail.hpp +++ b/srook/type_traits/detail.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_DETAIL_HPP #define INCLUDED_SROOK_TYPE_TRAITS_DETAIL_HPP diff --git a/srook/type_traits/detail/config.hpp b/srook/type_traits/detail/config.hpp index d4dc7f1..c703d02 100644 --- a/srook/type_traits/detail/config.hpp +++ b/srook/type_traits/detail/config.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License. +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License. #ifndef INCLUDED_SROOK_TYPE_TRAITS_DETAIL_CONFIG_HPP #define INCLUDED_SROOK_TYPE_TRAITS_DETAIL_CONFIG_HPP diff --git a/srook/type_traits/detail/detector.hpp b/srook/type_traits/detail/detector.hpp index f242e47..de094a9 100644 --- a/srook/type_traits/detail/detector.hpp +++ b/srook/type_traits/detail/detector.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_DETAIL_DETECTOR_HPP #define INCLUDED_SROOK_TYPE_TRAITS_DETAIL_DETECTOR_HPP diff --git a/srook/type_traits/detail/has_type_gen.hpp b/srook/type_traits/detail/has_type_gen.hpp index 9c49a1e..984a296 100644 --- a/srook/type_traits/detail/has_type_gen.hpp +++ b/srook/type_traits/detail/has_type_gen.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_DETAIL_HAS_TYPE_GEN_HPP #define INCLUDED_SROOK_TYPE_TRAITS_DETAIL_HAS_TYPE_GEN_HPP diff --git a/srook/type_traits/detail/logical.hpp b/srook/type_traits/detail/logical.hpp index 7bb1333..9c5aa6d 100644 --- a/srook/type_traits/detail/logical.hpp +++ b/srook/type_traits/detail/logical.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_DETAIL_LOGICAL_HPP #define INCLUDED_SROOK_TYPE_TRAITS_DETAIL_LOGICAL_HPP #include diff --git a/srook/type_traits/detect.hpp b/srook/type_traits/detect.hpp index a83c7b1..ce10e1c 100644 --- a/srook/type_traits/detect.hpp +++ b/srook/type_traits/detect.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_DETECTED_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_DETECTED_HPP diff --git a/srook/type_traits/disable_if.hpp b/srook/type_traits/disable_if.hpp index 7ea8332..b60b990 100644 --- a/srook/type_traits/disable_if.hpp +++ b/srook/type_traits/disable_if.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_DISABLE_IF_HPP #define INCLUDED_SROOK_TYPE_TRAITS_DISABLE_IF_HPP #include diff --git a/srook/type_traits/disjunction.hpp b/srook/type_traits/disjunction.hpp index c0c3ab5..829741c 100644 --- a/srook/type_traits/disjunction.hpp +++ b/srook/type_traits/disjunction.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_DISJUNCTION_HPP #define INCLUDED_SROOK_TYPE_TRAITS_DISJUNCTION_HPP #include diff --git a/srook/type_traits/enable_disable_if.hpp b/srook/type_traits/enable_disable_if.hpp index 472fc31..f673855 100644 --- a/srook/type_traits/enable_disable_if.hpp +++ b/srook/type_traits/enable_disable_if.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_ENABLE_DISABLE_IF #define INCLUDED_SROOK_TYPE_TRAITS_ENABLE_DISABLE_IF diff --git a/srook/type_traits/enable_if.hpp b/srook/type_traits/enable_if.hpp index 09f222c..fc9b3fd 100644 --- a/srook/type_traits/enable_if.hpp +++ b/srook/type_traits/enable_if.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_ENABLE_IF_HPP #define INCLUDED_SROOK_TYPE_TRAITS_ENABLE_IF_HPP #include diff --git a/srook/type_traits/endian.hpp b/srook/type_traits/endian.hpp index 59751c3..9a1ffc2 100644 --- a/srook/type_traits/endian.hpp +++ b/srook/type_traits/endian.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_ENDIAN_HPP #define INCLUDED_SROOK_TYPE_TRAITS_ENDIAN_HPP diff --git a/srook/type_traits/extent.hpp b/srook/type_traits/extent.hpp index 25de345..c8bf1b8 100644 --- a/srook/type_traits/extent.hpp +++ b/srook/type_traits/extent.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_EXTENT_HPP #define INCLUDED_SROOK_TYPE_TRAITS_EXTENT_HPP #include diff --git a/srook/type_traits/has_iterator.hpp b/srook/type_traits/has_iterator.hpp index 32655b3..cdca115 100644 --- a/srook/type_traits/has_iterator.hpp +++ b/srook/type_traits/has_iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDE_SROOK_TYPE_TRAITS_HAS_ITERATOR #define INCLUDE_SROOK_TYPE_TRAITS_HAS_ITERATOR #if SROOK_CPLUSPLUS >= SROOK_CPLUSPLUS11_CONSTANT diff --git a/srook/type_traits/has_trivial_constructor.hpp b/srook/type_traits/has_trivial_constructor.hpp index af48056..e9d4cd3 100644 --- a/srook/type_traits/has_trivial_constructor.hpp +++ b/srook/type_traits/has_trivial_constructor.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_HAS_TRIVIAL_CONSTRUCTOR_HPP #define INCLUDED_SROOK_TYPE_TRAITS_HAS_TRIVIAL_CONSTRUCTOR_HPP diff --git a/srook/type_traits/has_trivial_destructor.hpp b/srook/type_traits/has_trivial_destructor.hpp index 52df59c..1d7f775 100644 --- a/srook/type_traits/has_trivial_destructor.hpp +++ b/srook/type_traits/has_trivial_destructor.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_HAS_TRIVIAL_DESTRUCTOR_HPP #define INCLUDED_SROOK_TYPE_TRAITS_HAS_TRIVIAL_DESTRUCTOR_HPP diff --git a/srook/type_traits/has_virtual_destructor.hpp b/srook/type_traits/has_virtual_destructor.hpp index b156caf..dfed45b 100644 --- a/srook/type_traits/has_virtual_destructor.hpp +++ b/srook/type_traits/has_virtual_destructor.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_HAS_VIRTUAL_DESTRUCTOR_HPP #define INCLUDED_SROOK_TYPE_TRAITS_HAS_VIRTUAL_DESTRUCTOR_HPP diff --git a/srook/type_traits/integral_constant.hpp b/srook/type_traits/integral_constant.hpp index 3a3f4bf..be9f14e 100644 --- a/srook/type_traits/integral_constant.hpp +++ b/srook/type_traits/integral_constant.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_INTEGRAL_CONSTANT_HPP #define INCLUDED_SROOK_TYPE_TRAITS_INTEGRAL_CONSTANT_HPP #include diff --git a/srook/type_traits/intrinsics.hpp b/srook/type_traits/intrinsics.hpp index 1e1fd77..773ba7c 100644 --- a/srook/type_traits/intrinsics.hpp +++ b/srook/type_traits/intrinsics.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License. +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License. #ifndef SROOK_TYPE_TRAITS_INTRINSICS_HPP_INCLUDED #define SROOK_TYPE_TRAITS_INTRINSICS_HPP_INCLUDED diff --git a/srook/type_traits/invoke_result.hpp b/srook/type_traits/invoke_result.hpp index 351f991..eae4735 100644 --- a/srook/type_traits/invoke_result.hpp +++ b/srook/type_traits/invoke_result.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_INVOKE_RESULT_HPP #define INCLUDED_SROOK_TYPE_TRAITS_INVOKE_RESULT_HPP #include diff --git a/srook/type_traits/is_abstract.hpp b/srook/type_traits/is_abstract.hpp index ed2c489..75e1e4a 100644 --- a/srook/type_traits/is_abstract.hpp +++ b/srook/type_traits/is_abstract.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_ABSTRACT_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_ABSTRACT_HPP diff --git a/srook/type_traits/is_arithmetic.hpp b/srook/type_traits/is_arithmetic.hpp index 3516ee9..1d1f00d 100644 --- a/srook/type_traits/is_arithmetic.hpp +++ b/srook/type_traits/is_arithmetic.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_ARITHMETIC_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_ARITHMETIC_HPP #include diff --git a/srook/type_traits/is_array.hpp b/srook/type_traits/is_array.hpp index e0f9f7f..b601d76 100644 --- a/srook/type_traits/is_array.hpp +++ b/srook/type_traits/is_array.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_ARRAY_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_ARRAY_HPP #include diff --git a/srook/type_traits/is_assignable.hpp b/srook/type_traits/is_assignable.hpp index e33fd26..abf551a 100644 --- a/srook/type_traits/is_assignable.hpp +++ b/srook/type_traits/is_assignable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_ASSIGNABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_ASSIGNABLE_HPP #include diff --git a/srook/type_traits/is_base_of.hpp b/srook/type_traits/is_base_of.hpp index d29e197..a650b06 100644 --- a/srook/type_traits/is_base_of.hpp +++ b/srook/type_traits/is_base_of.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_BASE_OF_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_BASE_OF_HPP #include diff --git a/srook/type_traits/is_callable.hpp b/srook/type_traits/is_callable.hpp index 2cd2fd9..3b28d3b 100644 --- a/srook/type_traits/is_callable.hpp +++ b/srook/type_traits/is_callable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_CALLABLE #define INCLUDED_SROOK_TYPE_TRAITS_IS_CALLABLE #include diff --git a/srook/type_traits/is_character.hpp b/srook/type_traits/is_character.hpp index 575499b..d40d62e 100644 --- a/srook/type_traits/is_character.hpp +++ b/srook/type_traits/is_character.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_CHARACTER_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_CHARACTER_HPP #include diff --git a/srook/type_traits/is_class.hpp b/srook/type_traits/is_class.hpp index e16f647..7955ca9 100644 --- a/srook/type_traits/is_class.hpp +++ b/srook/type_traits/is_class.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_CLASS_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_CLASS_HPP #include diff --git a/srook/type_traits/is_comparable.hpp b/srook/type_traits/is_comparable.hpp index f3ca79d..ea2c710 100644 --- a/srook/type_traits/is_comparable.hpp +++ b/srook/type_traits/is_comparable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_COMPARABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_COMPARABLE_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/is_composite.hpp b/srook/type_traits/is_composite.hpp index 1565d07..4467a4a 100644 --- a/srook/type_traits/is_composite.hpp +++ b/srook/type_traits/is_composite.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_COMPOSITE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_COMPOSITE_HPP diff --git a/srook/type_traits/is_const.hpp b/srook/type_traits/is_const.hpp index c0d673d..5a2998b 100644 --- a/srook/type_traits/is_const.hpp +++ b/srook/type_traits/is_const.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_CONST_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_CONST_HPP diff --git a/srook/type_traits/is_constexpr_function.hpp b/srook/type_traits/is_constexpr_function.hpp index 04912c5..cbb30f4 100644 --- a/srook/type_traits/is_constexpr_function.hpp +++ b/srook/type_traits/is_constexpr_function.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_CONSTEXPR_FUNCTION_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_CONSTEXPR_FUNCTION_HPP diff --git a/srook/type_traits/is_constructible.hpp b/srook/type_traits/is_constructible.hpp index 6a9b60a..0cf2e4e 100644 --- a/srook/type_traits/is_constructible.hpp +++ b/srook/type_traits/is_constructible.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_CONSTRUCTIBLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_CONSTRUCTIBLE_HPP #include diff --git a/srook/type_traits/is_convertible.hpp b/srook/type_traits/is_convertible.hpp index f530271..596af60 100644 --- a/srook/type_traits/is_convertible.hpp +++ b/srook/type_traits/is_convertible.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_CONVERTIBLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_CONVERTIBLE_HPP diff --git a/srook/type_traits/is_copy_assignable.hpp b/srook/type_traits/is_copy_assignable.hpp index 6a4d5d8..41ba692 100644 --- a/srook/type_traits/is_copy_assignable.hpp +++ b/srook/type_traits/is_copy_assignable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_COPY_ASSIGNABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_COPY_ASSIGNABLE_HPP #include diff --git a/srook/type_traits/is_copy_constructible.hpp b/srook/type_traits/is_copy_constructible.hpp index 8b5304c..dec52f2 100644 --- a/srook/type_traits/is_copy_constructible.hpp +++ b/srook/type_traits/is_copy_constructible.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_COPY_CONSTRUCTIBLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_COPY_CONSTRUCTIBLE_HPP #include diff --git a/srook/type_traits/is_copyable.hpp b/srook/type_traits/is_copyable.hpp index e0e65df..348f93f 100644 --- a/srook/type_traits/is_copyable.hpp +++ b/srook/type_traits/is_copyable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_TYPE_TRAITS_IS_COPYABLE_HPP #define INCLUDED_TYPE_TRAITS_IS_COPYABLE_HPP #include diff --git a/srook/type_traits/is_decrementable.hpp b/srook/type_traits/is_decrementable.hpp index cd587a1..0f95301 100644 --- a/srook/type_traits/is_decrementable.hpp +++ b/srook/type_traits/is_decrementable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_DECREMENTABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_DECREMENTABLE_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/is_default_constructible.hpp b/srook/type_traits/is_default_constructible.hpp index b9a03c9..21037c1 100644 --- a/srook/type_traits/is_default_constructible.hpp +++ b/srook/type_traits/is_default_constructible.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_DEFAULT_CONSTRUCTIBLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_DEFAULT_CONSTRUCTIBLE_HPP #include diff --git a/srook/type_traits/is_dereferenceable.hpp b/srook/type_traits/is_dereferenceable.hpp index 6cbe6a5..777be7b 100644 --- a/srook/type_traits/is_dereferenceable.hpp +++ b/srook/type_traits/is_dereferenceable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_DEREFERENCEABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_DEREFERENCEABLE_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/is_destructible.hpp b/srook/type_traits/is_destructible.hpp index 985973e..a328c2c 100644 --- a/srook/type_traits/is_destructible.hpp +++ b/srook/type_traits/is_destructible.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_DESTRUCTIBLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_DESTRUCTIBLE_HPP #include diff --git a/srook/type_traits/is_duration.hpp b/srook/type_traits/is_duration.hpp index 868639c..f4daae0 100644 --- a/srook/type_traits/is_duration.hpp +++ b/srook/type_traits/is_duration.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_DURATION_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_DURATION_HPP diff --git a/srook/type_traits/is_empty.hpp b/srook/type_traits/is_empty.hpp index 9149ab0..02c38eb 100644 --- a/srook/type_traits/is_empty.hpp +++ b/srook/type_traits/is_empty.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_EMPTY_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_EMPTY_HPP diff --git a/srook/type_traits/is_enum.hpp b/srook/type_traits/is_enum.hpp index e424b12..069473d 100644 --- a/srook/type_traits/is_enum.hpp +++ b/srook/type_traits/is_enum.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_ENUM_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_ENUM_HPP #include diff --git a/srook/type_traits/is_equal.hpp b/srook/type_traits/is_equal.hpp index 6d02318..fc4cb7c 100644 --- a/srook/type_traits/is_equal.hpp +++ b/srook/type_traits/is_equal.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_EQUAL_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_EQUAL_HPP diff --git a/srook/type_traits/is_equality_comparable.hpp b/srook/type_traits/is_equality_comparable.hpp index 1bb0051..b290fbc 100644 --- a/srook/type_traits/is_equality_comparable.hpp +++ b/srook/type_traits/is_equality_comparable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_EQUALITY_COMPARABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_EQUALITY_COMPARABLE_HPP diff --git a/srook/type_traits/is_final.hpp b/srook/type_traits/is_final.hpp index 8e061b9..ef10e82 100644 --- a/srook/type_traits/is_final.hpp +++ b/srook/type_traits/is_final.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_FINAL_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_FINAL_HPP diff --git a/srook/type_traits/is_fixed_point.hpp b/srook/type_traits/is_fixed_point.hpp index 297d567..690ada1 100644 --- a/srook/type_traits/is_fixed_point.hpp +++ b/srook/type_traits/is_fixed_point.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_FIXED_POINT_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_FIXED_POINT_HPP diff --git a/srook/type_traits/is_floating_point.hpp b/srook/type_traits/is_floating_point.hpp index 2cf032d..d3ec8e2 100644 --- a/srook/type_traits/is_floating_point.hpp +++ b/srook/type_traits/is_floating_point.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_FLOATING_POINT_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_FLOATING_POINT_HPP #include diff --git a/srook/type_traits/is_function.hpp b/srook/type_traits/is_function.hpp index 16063ed..aaa3a23 100644 --- a/srook/type_traits/is_function.hpp +++ b/srook/type_traits/is_function.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_FUNCTION_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_FUNCTION_HPP #include diff --git a/srook/type_traits/is_function_object.hpp b/srook/type_traits/is_function_object.hpp index 90eb008..d4510f9 100644 --- a/srook/type_traits/is_function_object.hpp +++ b/srook/type_traits/is_function_object.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_FUNCTION_OBJECT_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_FUNCTION_OBJECT_HPP diff --git a/srook/type_traits/is_geq_comparable.hpp b/srook/type_traits/is_geq_comparable.hpp index 8b35385..54d6966 100644 --- a/srook/type_traits/is_geq_comparable.hpp +++ b/srook/type_traits/is_geq_comparable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_IS_GEQ_COMPARABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_IS_GEQ_COMPARABLE_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/is_gt_comparable.hpp b/srook/type_traits/is_gt_comparable.hpp index 66970d0..4ef7012 100644 --- a/srook/type_traits/is_gt_comparable.hpp +++ b/srook/type_traits/is_gt_comparable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_IS_GT_COMPARABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_IS_GT_COMPARABLE_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/is_hash.hpp b/srook/type_traits/is_hash.hpp index ecf703c..639821c 100644 --- a/srook/type_traits/is_hash.hpp +++ b/srook/type_traits/is_hash.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_HASH_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_HASH_HPP diff --git a/srook/type_traits/is_incrementable.hpp b/srook/type_traits/is_incrementable.hpp index 68db8f6..3a3db68 100644 --- a/srook/type_traits/is_incrementable.hpp +++ b/srook/type_traits/is_incrementable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_INCREMENTABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_INCREMENTABLE_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/is_integral.hpp b/srook/type_traits/is_integral.hpp index deb92c1..d1c3fa0 100644 --- a/srook/type_traits/is_integral.hpp +++ b/srook/type_traits/is_integral.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_INTEGRAL_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_INTEGRAL_HPP #include diff --git a/srook/type_traits/is_invocable.hpp b/srook/type_traits/is_invocable.hpp index 6b96897..85618b2 100644 --- a/srook/type_traits/is_invocable.hpp +++ b/srook/type_traits/is_invocable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_INVOCABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_INVOCABLE_HPP #include diff --git a/srook/type_traits/is_leq_comparable.hpp b/srook/type_traits/is_leq_comparable.hpp index 61b3759..a7dc226 100644 --- a/srook/type_traits/is_leq_comparable.hpp +++ b/srook/type_traits/is_leq_comparable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_IS_LEQ_COMPARABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_IS_LEQ_COMPARABLE_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/is_less_than_comparable.hpp b/srook/type_traits/is_less_than_comparable.hpp index 7c0c089..48fa645 100644 --- a/srook/type_traits/is_less_than_comparable.hpp +++ b/srook/type_traits/is_less_than_comparable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_LESS_THAN_COMPARABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_LESS_THAN_COMPARABLE_HPP diff --git a/srook/type_traits/is_literal.hpp b/srook/type_traits/is_literal.hpp index 753515b..1c7f534 100644 --- a/srook/type_traits/is_literal.hpp +++ b/srook/type_traits/is_literal.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_LITERAL_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_LITERAL_HPP diff --git a/srook/type_traits/is_lt_comparable.hpp b/srook/type_traits/is_lt_comparable.hpp index e62163a..82b14d4 100644 --- a/srook/type_traits/is_lt_comparable.hpp +++ b/srook/type_traits/is_lt_comparable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_IS_LT_COMPARABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_IS_LT_COMPARABLE_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/is_lvalue_reference.hpp b/srook/type_traits/is_lvalue_reference.hpp index a3926f2..3b0e44d 100644 --- a/srook/type_traits/is_lvalue_reference.hpp +++ b/srook/type_traits/is_lvalue_reference.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_LVALUE_REFERENCE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_LVALUE_REFERENCE_HPP #include diff --git a/srook/type_traits/is_member_function_pointer.hpp b/srook/type_traits/is_member_function_pointer.hpp index 51716ca..a480aae 100644 --- a/srook/type_traits/is_member_function_pointer.hpp +++ b/srook/type_traits/is_member_function_pointer.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_MEMBER_FUNCTION_POINTER_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_MEMBER_FUNCTION_POINTER_HPP diff --git a/srook/type_traits/is_member_object_pointer.hpp b/srook/type_traits/is_member_object_pointer.hpp index 4819a4a..f3a6588 100644 --- a/srook/type_traits/is_member_object_pointer.hpp +++ b/srook/type_traits/is_member_object_pointer.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_MEMBER_OBJECT_POINTER_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_MEMBER_OBJECT_POINTER_HPP diff --git a/srook/type_traits/is_member_pointer.hpp b/srook/type_traits/is_member_pointer.hpp index 36cf06b..00e32bd 100644 --- a/srook/type_traits/is_member_pointer.hpp +++ b/srook/type_traits/is_member_pointer.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_MEMBER_POINTER_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_MEMBER_POINTER_HPP #include diff --git a/srook/type_traits/is_movable.hpp b/srook/type_traits/is_movable.hpp index eb9662d..783eae5 100644 --- a/srook/type_traits/is_movable.hpp +++ b/srook/type_traits/is_movable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_TYPE_TRAITS_IS_MOVABLE_HPP #define INCLUDED_TYPE_TRAITS_IS_MOVABLE_HPP #include diff --git a/srook/type_traits/is_move_assignable.hpp b/srook/type_traits/is_move_assignable.hpp index 277d3ac..ebca995 100644 --- a/srook/type_traits/is_move_assignable.hpp +++ b/srook/type_traits/is_move_assignable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_MOVE_ASSIGNABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_MOVE_ASSIGNABLE_HPP #include diff --git a/srook/type_traits/is_move_constructible.hpp b/srook/type_traits/is_move_constructible.hpp index 6978440..4db6d9d 100644 --- a/srook/type_traits/is_move_constructible.hpp +++ b/srook/type_traits/is_move_constructible.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_MOVE_CONSTRUCTIBLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_MOVE_CONSTRUCTIBLE_HPP #include diff --git a/srook/type_traits/is_nothrow_assignable.hpp b/srook/type_traits/is_nothrow_assignable.hpp index 7a767a9..1321e94 100644 --- a/srook/type_traits/is_nothrow_assignable.hpp +++ b/srook/type_traits/is_nothrow_assignable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_NOTHROW_ASSIGNABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_NOTHROW_ASSIGNABLE_HPP #include diff --git a/srook/type_traits/is_nothrow_constructible.hpp b/srook/type_traits/is_nothrow_constructible.hpp index 80f52c0..2ef069a 100644 --- a/srook/type_traits/is_nothrow_constructible.hpp +++ b/srook/type_traits/is_nothrow_constructible.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_NOTHROW_CONSTRUCTIBLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_NOTHROW_CONSTRUCTIBLE_HPP #include diff --git a/srook/type_traits/is_nothrow_default_constructible.hpp b/srook/type_traits/is_nothrow_default_constructible.hpp index fa4eb6d..21d2086 100644 --- a/srook/type_traits/is_nothrow_default_constructible.hpp +++ b/srook/type_traits/is_nothrow_default_constructible.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_NOTHROW_DEFAULT_CONSTRUCTIBLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_NOTHROW_DEFAULT_CONSTRUCTIBLE_HPP #include diff --git a/srook/type_traits/is_nothrow_destructible.hpp b/srook/type_traits/is_nothrow_destructible.hpp index 5b28337..e4a067e 100644 --- a/srook/type_traits/is_nothrow_destructible.hpp +++ b/srook/type_traits/is_nothrow_destructible.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_NOTHROW_DESTRUCTIBLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_NOTHROW_DESTRUCTIBLE_HPP #include diff --git a/srook/type_traits/is_nothrow_invocable.hpp b/srook/type_traits/is_nothrow_invocable.hpp index bfce64f..04fdb9c 100644 --- a/srook/type_traits/is_nothrow_invocable.hpp +++ b/srook/type_traits/is_nothrow_invocable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_NOTHROW_INVOCABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_NOTHROW_INVOCABLE_HPP diff --git a/srook/type_traits/is_nothrow_invocable_r.hpp b/srook/type_traits/is_nothrow_invocable_r.hpp index 37f690f..a5a096b 100644 --- a/srook/type_traits/is_nothrow_invocable_r.hpp +++ b/srook/type_traits/is_nothrow_invocable_r.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_NOTHROW_INVOCABLE_R_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_NOTHROW_INVOCABLE_R_HPP diff --git a/srook/type_traits/is_nothrow_move_constructible.hpp b/srook/type_traits/is_nothrow_move_constructible.hpp index 0cfc778..49dba57 100644 --- a/srook/type_traits/is_nothrow_move_constructible.hpp +++ b/srook/type_traits/is_nothrow_move_constructible.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_NOTHROW_MOVE_CONSTRUCTIBLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_NOTHROW_MOVE_CONSTRUCTIBLE_HPP #include diff --git a/srook/type_traits/is_nullptr.hpp b/srook/type_traits/is_nullptr.hpp index c73b508..dcc62ef 100644 --- a/srook/type_traits/is_nullptr.hpp +++ b/srook/type_traits/is_nullptr.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_NULLPTR_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_NULLPTR_HPP #include diff --git a/srook/type_traits/is_numeric_type.hpp b/srook/type_traits/is_numeric_type.hpp index 4cbaf16..89ee0b0 100644 --- a/srook/type_traits/is_numeric_type.hpp +++ b/srook/type_traits/is_numeric_type.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_MPL_TYPETRAITS_IS_NUMERIC_TYPE_HPP #define INCLUDED_SROOK_MPL_TYPETRAITS_IS_NUMERIC_TYPE_HPP diff --git a/srook/type_traits/is_object.hpp b/srook/type_traits/is_object.hpp index ca9e162..b9a1758 100644 --- a/srook/type_traits/is_object.hpp +++ b/srook/type_traits/is_object.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_OBJECT_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_OBJECT_HPP #include diff --git a/srook/type_traits/is_optional.hpp b/srook/type_traits/is_optional.hpp index d333afa..048a1ef 100644 --- a/srook/type_traits/is_optional.hpp +++ b/srook/type_traits/is_optional.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_OPTIONAL_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_OPTIONAL_HPP diff --git a/srook/type_traits/is_pod.hpp b/srook/type_traits/is_pod.hpp index 8f10a1e..e447671 100644 --- a/srook/type_traits/is_pod.hpp +++ b/srook/type_traits/is_pod.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_POD_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_POD_HPP diff --git a/srook/type_traits/is_pointer.hpp b/srook/type_traits/is_pointer.hpp index af47aaf..6ae9a42 100644 --- a/srook/type_traits/is_pointer.hpp +++ b/srook/type_traits/is_pointer.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_POINTER_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_POINTER_HPP #include diff --git a/srook/type_traits/is_polymorphic.hpp b/srook/type_traits/is_polymorphic.hpp index 01345f2..e7a5b06 100644 --- a/srook/type_traits/is_polymorphic.hpp +++ b/srook/type_traits/is_polymorphic.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_POLYMORPHIC_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_POLYMORPHIC_HPP diff --git a/srook/type_traits/is_postdecrementable.hpp b/srook/type_traits/is_postdecrementable.hpp index 23c01bb..8e7a24a 100644 --- a/srook/type_traits/is_postdecrementable.hpp +++ b/srook/type_traits/is_postdecrementable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_POSTDECREMENTABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_POSTDECREMENTABLE_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/is_postincrementable.hpp b/srook/type_traits/is_postincrementable.hpp index 8e40a60..7d9ff83 100644 --- a/srook/type_traits/is_postincrementable.hpp +++ b/srook/type_traits/is_postincrementable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_POSTINCREMENTABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_POSTINCREMENTABLE_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/is_predecrementable.hpp b/srook/type_traits/is_predecrementable.hpp index 94eb95a..4f3e5b2 100644 --- a/srook/type_traits/is_predecrementable.hpp +++ b/srook/type_traits/is_predecrementable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_PREDECREMENTABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_PREDECREMENTABLE_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/is_preincrementable.hpp b/srook/type_traits/is_preincrementable.hpp index 07ef75d..c6c8624 100644 --- a/srook/type_traits/is_preincrementable.hpp +++ b/srook/type_traits/is_preincrementable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_PREINCREMENTABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_PREINCREMENTABLE_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/is_range.hpp b/srook/type_traits/is_range.hpp index fa04d14..60c07a4 100644 --- a/srook/type_traits/is_range.hpp +++ b/srook/type_traits/is_range.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_RANGE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_RANGE_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/is_reference.hpp b/srook/type_traits/is_reference.hpp index f9b6feb..d54e6d8 100644 --- a/srook/type_traits/is_reference.hpp +++ b/srook/type_traits/is_reference.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_REFERENCE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_REFERENCE_HPP #include diff --git a/srook/type_traits/is_referenceable.hpp b/srook/type_traits/is_referenceable.hpp index f7d35fb..617392d 100644 --- a/srook/type_traits/is_referenceable.hpp +++ b/srook/type_traits/is_referenceable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_REFERENCEABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_REFERENCEABLE_HPP #include diff --git a/srook/type_traits/is_rvalue_reference.hpp b/srook/type_traits/is_rvalue_reference.hpp index 27e9b47..33452f9 100644 --- a/srook/type_traits/is_rvalue_reference.hpp +++ b/srook/type_traits/is_rvalue_reference.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_RVALUE_REFERENCE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_RVALUE_REFERENCE_HPP #include diff --git a/srook/type_traits/is_same.hpp b/srook/type_traits/is_same.hpp index 1b726e6..b22b13e 100644 --- a/srook/type_traits/is_same.hpp +++ b/srook/type_traits/is_same.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_SAME_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_SAME_HPP diff --git a/srook/type_traits/is_same_all.hpp b/srook/type_traits/is_same_all.hpp index 158333d..70daf99 100644 --- a/srook/type_traits/is_same_all.hpp +++ b/srook/type_traits/is_same_all.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_SAME_ALL_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_SAME_ALL_HPP #include diff --git a/srook/type_traits/is_scalar.hpp b/srook/type_traits/is_scalar.hpp index fbd342e..6eb0c5e 100644 --- a/srook/type_traits/is_scalar.hpp +++ b/srook/type_traits/is_scalar.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_SCALAR_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_SCALAR_HPP #include diff --git a/srook/type_traits/is_signed.hpp b/srook/type_traits/is_signed.hpp index 5e62561..9f147d7 100644 --- a/srook/type_traits/is_signed.hpp +++ b/srook/type_traits/is_signed.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_SIGNED_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_SIGNED_HPP diff --git a/srook/type_traits/is_standard_layout.hpp b/srook/type_traits/is_standard_layout.hpp index 19bc70d..d4d11d6 100644 --- a/srook/type_traits/is_standard_layout.hpp +++ b/srook/type_traits/is_standard_layout.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_STANDARD_LAYOUT_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_STANDARD_LAYOUT_HPP diff --git a/srook/type_traits/is_static_castable.hpp b/srook/type_traits/is_static_castable.hpp index f4b0783..41537ef 100644 --- a/srook/type_traits/is_static_castable.hpp +++ b/srook/type_traits/is_static_castable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_STATIC_CASTABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_STATIC_CASTABLE_HPP #include diff --git a/srook/type_traits/is_swappable.hpp b/srook/type_traits/is_swappable.hpp index 64b68a7..53f8b14 100644 --- a/srook/type_traits/is_swappable.hpp +++ b/srook/type_traits/is_swappable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_SWAP_ABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_SWAP_ABLE_HPP #include diff --git a/srook/type_traits/is_trivial.hpp b/srook/type_traits/is_trivial.hpp index eabceb7..00aba73 100644 --- a/srook/type_traits/is_trivial.hpp +++ b/srook/type_traits/is_trivial.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIAL_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIAL_HPP diff --git a/srook/type_traits/is_trivially_assignable.hpp b/srook/type_traits/is_trivially_assignable.hpp index 4c73ae3..1507991 100644 --- a/srook/type_traits/is_trivially_assignable.hpp +++ b/srook/type_traits/is_trivially_assignable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIALLY_ASSIGNABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIALLY_ASSIGNABLE_HPP diff --git a/srook/type_traits/is_trivially_constructible.hpp b/srook/type_traits/is_trivially_constructible.hpp index a56e8fb..e98e197 100644 --- a/srook/type_traits/is_trivially_constructible.hpp +++ b/srook/type_traits/is_trivially_constructible.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIALLY_CONSTRUCTIBLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIALLY_CONSTRUCTIBLE_HPP diff --git a/srook/type_traits/is_trivially_copy_assignable.hpp b/srook/type_traits/is_trivially_copy_assignable.hpp index bc7705c..0f0cd98 100644 --- a/srook/type_traits/is_trivially_copy_assignable.hpp +++ b/srook/type_traits/is_trivially_copy_assignable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIALLY_COPY_ASSIGNABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIALLY_COPY_ASSIGNABLE_HPP diff --git a/srook/type_traits/is_trivially_copy_constructible.hpp b/srook/type_traits/is_trivially_copy_constructible.hpp index c826e68..a857692 100644 --- a/srook/type_traits/is_trivially_copy_constructible.hpp +++ b/srook/type_traits/is_trivially_copy_constructible.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIALLY_COPY_CONSTRUCTIBLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIALLY_COPY_CONSTRUCTIBLE_HPP diff --git a/srook/type_traits/is_trivially_copyable.hpp b/srook/type_traits/is_trivially_copyable.hpp index d5e64e4..4e41f89 100644 --- a/srook/type_traits/is_trivially_copyable.hpp +++ b/srook/type_traits/is_trivially_copyable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIALLY_COPYABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIALLY_COPYABLE_HPP diff --git a/srook/type_traits/is_trivially_default_constructible.hpp b/srook/type_traits/is_trivially_default_constructible.hpp index fd7be59..0448c1d 100644 --- a/srook/type_traits/is_trivially_default_constructible.hpp +++ b/srook/type_traits/is_trivially_default_constructible.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIALLY_DEFAULT_CONSTRUCTIBLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIALLY_DEFAULT_CONSTRUCTIBLE_HPP diff --git a/srook/type_traits/is_trivially_move_assignable.hpp b/srook/type_traits/is_trivially_move_assignable.hpp index ef66664..ba6ce37 100644 --- a/srook/type_traits/is_trivially_move_assignable.hpp +++ b/srook/type_traits/is_trivially_move_assignable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIALLY_MOVE_ASSIGNABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIALLY_MOVE_ASSIGNABLE_HPP diff --git a/srook/type_traits/is_trivially_move_constructible.hpp b/srook/type_traits/is_trivially_move_constructible.hpp index 8706b5d..587ac8c 100644 --- a/srook/type_traits/is_trivially_move_constructible.hpp +++ b/srook/type_traits/is_trivially_move_constructible.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIALLY_MOVE_CONSTRUCTIBLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_TRIVIALLY_MOVE_CONSTRUCTIBLE_HPP diff --git a/srook/type_traits/is_tuple.hpp b/srook/type_traits/is_tuple.hpp index 6ae65fa..667e3db 100644 --- a/srook/type_traits/is_tuple.hpp +++ b/srook/type_traits/is_tuple.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITAS_IS_TUPLE_HPP #define INCLUDED_SROOK_TYPE_TRAITAS_IS_TUPLE_HPP #include diff --git a/srook/type_traits/is_union.hpp b/srook/type_traits/is_union.hpp index 5ec9b2d..21865b0 100644 --- a/srook/type_traits/is_union.hpp +++ b/srook/type_traits/is_union.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_UNION_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_UNION_HPP #include diff --git a/srook/type_traits/is_unsigned.hpp b/srook/type_traits/is_unsigned.hpp index 91a1dfa..60a7ee9 100644 --- a/srook/type_traits/is_unsigned.hpp +++ b/srook/type_traits/is_unsigned.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_UNSIGNED_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_UNSIGNED_HPP diff --git a/srook/type_traits/is_void.hpp b/srook/type_traits/is_void.hpp index bac2fbd..561d7fe 100644 --- a/srook/type_traits/is_void.hpp +++ b/srook/type_traits/is_void.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_VOID_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_VOID_HPP #include diff --git a/srook/type_traits/is_volatile.hpp b/srook/type_traits/is_volatile.hpp index 36a1736..f7d704d 100644 --- a/srook/type_traits/is_volatile.hpp +++ b/srook/type_traits/is_volatile.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_VOLATILE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_VOLATILE_HPP diff --git a/srook/type_traits/iterator.hpp b/srook/type_traits/iterator.hpp index 7fdada7..7b2f519 100644 --- a/srook/type_traits/iterator.hpp +++ b/srook/type_traits/iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_ITERATOR_HPP #define INCLUDED_SROOK_TYPE_TRAITS_ITERATOR_HPP diff --git a/srook/type_traits/iterator/is_bidirectionaliterator.hpp b/srook/type_traits/iterator/is_bidirectionaliterator.hpp index ff70fd1..142f84b 100644 --- a/srook/type_traits/iterator/is_bidirectionaliterator.hpp +++ b/srook/type_traits/iterator/is_bidirectionaliterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_ITERATOR_IS_BIDIRECTIONALITERATOR_HPP #define INCLUDED_SROOK_TYPE_TRAITS_ITERATOR_IS_BIDIRECTIONALITERATOR_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/iterator/is_forwarditerator.hpp b/srook/type_traits/iterator/is_forwarditerator.hpp index 01618be..b4aa990 100644 --- a/srook/type_traits/iterator/is_forwarditerator.hpp +++ b/srook/type_traits/iterator/is_forwarditerator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_ITERATOR_IS_FORWARDITERATOR_HPP #define INCLUDED_SROOK_TYPE_TRAITS_ITERATOR_IS_FORWARDITERATOR_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/iterator/is_inputiterator.hpp b/srook/type_traits/iterator/is_inputiterator.hpp index 82c674a..c93c8d7 100644 --- a/srook/type_traits/iterator/is_inputiterator.hpp +++ b/srook/type_traits/iterator/is_inputiterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_ITERATOR_IS_INPUTITERATOR_HPP #define INCLUDED_SROOK_TYPE_TRAITS_ITERATOR_IS_INPUTITERATOR_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/iterator/is_iterator.hpp b/srook/type_traits/iterator/is_iterator.hpp index ec0aa08..ed8a40e 100644 --- a/srook/type_traits/iterator/is_iterator.hpp +++ b/srook/type_traits/iterator/is_iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_ITERATOR_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_ITERATOR_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/iterator/is_outputiterator.hpp b/srook/type_traits/iterator/is_outputiterator.hpp index 1bc0e0e..a8560e7 100644 --- a/srook/type_traits/iterator/is_outputiterator.hpp +++ b/srook/type_traits/iterator/is_outputiterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_ITERATOR_IS_OUTPUTITERATOR_HPP #define INCLUDED_SROOK_TYPE_TRAITS_ITERATOR_IS_OUTPUTITERATOR_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/iterator/is_randomaccessiterator.hpp b/srook/type_traits/iterator/is_randomaccessiterator.hpp index f338849..dbb4624 100644 --- a/srook/type_traits/iterator/is_randomaccessiterator.hpp +++ b/srook/type_traits/iterator/is_randomaccessiterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_ITERATOR_IS_RANDOMACCESSITERATOR_HPP #define INCLUDED_SROOK_TYPE_TRAITS_ITERATOR_IS_RANDOMACCESSITERATOR_HPP #ifdef _MSC_VER diff --git a/srook/type_traits/library_concepts.hpp b/srook/type_traits/library_concepts.hpp index 03cf2ad..39942ab 100644 --- a/srook/type_traits/library_concepts.hpp +++ b/srook/type_traits/library_concepts.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_HPP #define INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_HPP diff --git a/srook/type_traits/library_concepts/Clock.hpp b/srook/type_traits/library_concepts/Clock.hpp index def6930..17f007c 100644 --- a/srook/type_traits/library_concepts/Clock.hpp +++ b/srook/type_traits/library_concepts/Clock.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_CLOCK_HPP #define INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_CLOCK_HPP diff --git a/srook/type_traits/library_concepts/Hash.hpp b/srook/type_traits/library_concepts/Hash.hpp index d21c0ea..c4f10be 100644 --- a/srook/type_traits/library_concepts/Hash.hpp +++ b/srook/type_traits/library_concepts/Hash.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_HASH_HPP #define INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_HASH_HPP diff --git a/srook/type_traits/library_concepts/INVOKE.hpp b/srook/type_traits/library_concepts/INVOKE.hpp index 069a738..3807bb9 100644 --- a/srook/type_traits/library_concepts/INVOKE.hpp +++ b/srook/type_traits/library_concepts/INVOKE.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_CONCEPT_CXX17_INVOKE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_CONCEPT_CXX17_INVOKE_HPP diff --git a/srook/type_traits/library_concepts/Iterator.hpp b/srook/type_traits/library_concepts/Iterator.hpp index 50ca955..3b663e6 100644 --- a/srook/type_traits/library_concepts/Iterator.hpp +++ b/srook/type_traits/library_concepts/Iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_ITERATOR_HPP #define INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_ITERATOR_HPP diff --git a/srook/type_traits/library_concepts/LOCK.hpp b/srook/type_traits/library_concepts/LOCK.hpp index c20a7e4..b73391d 100644 --- a/srook/type_traits/library_concepts/LOCK.hpp +++ b/srook/type_traits/library_concepts/LOCK.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_LOCK_HPP #define INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_LOCK_HPP diff --git a/srook/type_traits/library_concepts/LOCK/is_basic_lockable.hpp b/srook/type_traits/library_concepts/LOCK/is_basic_lockable.hpp index fe3fd54..5a5cbc1 100644 --- a/srook/type_traits/library_concepts/LOCK/is_basic_lockable.hpp +++ b/srook/type_traits/library_concepts/LOCK/is_basic_lockable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_LOCK_IS_BASIC_LOCKABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_LOCK_IS_BASIC_LOCKABLE_HPP diff --git a/srook/type_traits/library_concepts/LOCK/is_lockable.hpp b/srook/type_traits/library_concepts/LOCK/is_lockable.hpp index 47a08c7..e7a0c89 100644 --- a/srook/type_traits/library_concepts/LOCK/is_lockable.hpp +++ b/srook/type_traits/library_concepts/LOCK/is_lockable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_LOCK_IS_LOCKABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_LOCK_IS_LOCKABLE_HPP #include diff --git a/srook/type_traits/library_concepts/LOCK/is_timedlockable.hpp b/srook/type_traits/library_concepts/LOCK/is_timedlockable.hpp index 13ffb49..27af043 100644 --- a/srook/type_traits/library_concepts/LOCK/is_timedlockable.hpp +++ b/srook/type_traits/library_concepts/LOCK/is_timedlockable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_LOCK_IS_TIMEDLOCKABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_LOCK_IS_TIMEDLOCKABLE_HPP #include diff --git a/srook/type_traits/library_concepts/Random.hpp b/srook/type_traits/library_concepts/Random.hpp index 65100e4..1150dc8 100644 --- a/srook/type_traits/library_concepts/Random.hpp +++ b/srook/type_traits/library_concepts/Random.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_RANDOM_HPP #define INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_RANDOM_HPP diff --git a/srook/type_traits/library_concepts/Semaphore.hpp b/srook/type_traits/library_concepts/Semaphore.hpp index d4b5de8..be4ecf8 100644 --- a/srook/type_traits/library_concepts/Semaphore.hpp +++ b/srook/type_traits/library_concepts/Semaphore.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_SEMAPHORE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_SEMAPHORE_HPP diff --git a/srook/type_traits/library_concepts/Semaphore/is_downable.hpp b/srook/type_traits/library_concepts/Semaphore/is_downable.hpp index c51f4d8..7a35d08 100644 --- a/srook/type_traits/library_concepts/Semaphore/is_downable.hpp +++ b/srook/type_traits/library_concepts/Semaphore/is_downable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_DOWNABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_DOWNABLE_HPP #include diff --git a/srook/type_traits/library_concepts/Semaphore/is_upable.hpp b/srook/type_traits/library_concepts/Semaphore/is_upable.hpp index 5809a13..7f3e528 100644 --- a/srook/type_traits/library_concepts/Semaphore/is_upable.hpp +++ b/srook/type_traits/library_concepts/Semaphore/is_upable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_UPABLE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_UPABLE_HPP #include diff --git a/srook/type_traits/library_concepts/is_mutex.hpp b/srook/type_traits/library_concepts/is_mutex.hpp index 92d77d2..98a39c0 100644 --- a/srook/type_traits/library_concepts/is_mutex.hpp +++ b/srook/type_traits/library_concepts/is_mutex.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_MUTEX_HPP #define INCLUDED_SROOK_TYPE_TRAITS_LIBRARY_CONCEPTS_MUTEX_HPP #if SROOK_CPLUSPLUS >= SROOK_CPLUSPLUS11_CONSTANT diff --git a/srook/type_traits/make_signed.hpp b/srook/type_traits/make_signed.hpp index 06f4059..8ee590f 100644 --- a/srook/type_traits/make_signed.hpp +++ b/srook/type_traits/make_signed.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_MAKE_SIGNED_HPP #define INCLUDED_SROOK_TYPE_TRAITS_MAKE_SIGNED_HPP diff --git a/srook/type_traits/make_unsigned.hpp b/srook/type_traits/make_unsigned.hpp index f7e1a1f..82325be 100644 --- a/srook/type_traits/make_unsigned.hpp +++ b/srook/type_traits/make_unsigned.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_MAKE_UNSIGNED_HPP #define INCLUDED_SROOK_TYPE_TRAITS_MAKE_UNSIGNED_HPP diff --git a/srook/type_traits/match_cv_qualifiers.hpp b/srook/type_traits/match_cv_qualifiers.hpp index 1e19477..b9986e3 100644 --- a/srook/type_traits/match_cv_qualifiers.hpp +++ b/srook/type_traits/match_cv_qualifiers.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_MATCH_CV_QUALIFIERS_HPP #define INCLUDED_SROOK_TYPE_TRAITS_MATCH_CV_QUALIFIERS_HPP diff --git a/srook/type_traits/negation.hpp b/srook/type_traits/negation.hpp index 71c0b68..58705fc 100644 --- a/srook/type_traits/negation.hpp +++ b/srook/type_traits/negation.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_NEGATION_HPP #define INCLUDED_SROOK_TYPE_TRAITS_NEGATION_HPP #include diff --git a/srook/type_traits/random.hpp b/srook/type_traits/random.hpp index fe26314..20bbf3b 100644 --- a/srook/type_traits/random.hpp +++ b/srook/type_traits/random.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_RANDOM_HPP #define INCLUDED_SROOK_TYPE_TRAITS_RANDOM_HPP diff --git a/srook/type_traits/random/is_random_number_distribution.hpp b/srook/type_traits/random/is_random_number_distribution.hpp index 464dd2f..ecf924c 100644 --- a/srook/type_traits/random/is_random_number_distribution.hpp +++ b/srook/type_traits/random/is_random_number_distribution.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_RANDOM_NUMBER_DISTRIBUTION_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_RANDOM_NUMBER_DISTRIBUTION_HPP diff --git a/srook/type_traits/random/is_random_number_engine.hpp b/srook/type_traits/random/is_random_number_engine.hpp index bc47059..0c0c9d0 100644 --- a/srook/type_traits/random/is_random_number_engine.hpp +++ b/srook/type_traits/random/is_random_number_engine.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_RANDOM_NUMBER_ENGINE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_RANDOM_NUMBER_ENGINE_HPP diff --git a/srook/type_traits/random/is_random_number_engine_adaptor.hpp b/srook/type_traits/random/is_random_number_engine_adaptor.hpp index 2aba0bb..347e733 100644 --- a/srook/type_traits/random/is_random_number_engine_adaptor.hpp +++ b/srook/type_traits/random/is_random_number_engine_adaptor.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_RANDOM_NUMBER_ENGINE_ADAPTOR_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_RANDOM_NUMBER_ENGINE_ADAPTOR_HPP diff --git a/srook/type_traits/random/is_seed_sequence.hpp b/srook/type_traits/random/is_seed_sequence.hpp index 49eec7f..1b700ee 100644 --- a/srook/type_traits/random/is_seed_sequence.hpp +++ b/srook/type_traits/random/is_seed_sequence.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_SEED_SEQUENCE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_SEED_SEQUENCE_HPP diff --git a/srook/type_traits/random/is_uniform_random_bit_generator.hpp b/srook/type_traits/random/is_uniform_random_bit_generator.hpp index b98704f..219e8e4 100644 --- a/srook/type_traits/random/is_uniform_random_bit_generator.hpp +++ b/srook/type_traits/random/is_uniform_random_bit_generator.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_IS_UNIFORM_RANDOM_BIT_GENERATOR_HPP #define INCLUDED_SROOK_TYPE_TRAITS_IS_UNIFORM_RANDOM_BIT_GENERATOR_HPP diff --git a/srook/type_traits/rank.hpp b/srook/type_traits/rank.hpp index 344b228..8d0899e 100644 --- a/srook/type_traits/rank.hpp +++ b/srook/type_traits/rank.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_RANK_HPP #define INCLUDED_SROOK_TYPE_TRAITS_RANK_HPP diff --git a/srook/type_traits/remove_all_extents.hpp b/srook/type_traits/remove_all_extents.hpp index 810faa3..9df0b35 100644 --- a/srook/type_traits/remove_all_extents.hpp +++ b/srook/type_traits/remove_all_extents.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_REMOVE_ALL_EXTENTS_HPP #define INCLUDED_SROOK_TYPE_TRAITS_REMOVE_ALL_EXTENTS_HPP #include diff --git a/srook/type_traits/remove_all_reference.hpp b/srook/type_traits/remove_all_reference.hpp index 3ad10c8..41e6cbd 100644 --- a/srook/type_traits/remove_all_reference.hpp +++ b/srook/type_traits/remove_all_reference.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_REMOVE_ALL_REFERENCES #define INCLUDED_SROOK_TYPE_TRAITS_REMOVE_ALL_REFERENCES #include diff --git a/srook/type_traits/remove_const.hpp b/srook/type_traits/remove_const.hpp index b2a2915..fbfa482 100644 --- a/srook/type_traits/remove_const.hpp +++ b/srook/type_traits/remove_const.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_REMOVE_CONST_HPP #define INCLUDED_SROOK_REMOVE_CONST_HPP #include diff --git a/srook/type_traits/remove_cv.hpp b/srook/type_traits/remove_cv.hpp index 23de920..29d0ad0 100644 --- a/srook/type_traits/remove_cv.hpp +++ b/srook/type_traits/remove_cv.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TARITS_REMOVE_CV_HPP #define INCLUDED_SROOK_TYPE_TARITS_REMOVE_CV_HPP #include diff --git a/srook/type_traits/remove_extent.hpp b/srook/type_traits/remove_extent.hpp index 25d6485..984cbd2 100644 --- a/srook/type_traits/remove_extent.hpp +++ b/srook/type_traits/remove_extent.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_REMOVE_EXTENT_HPP #define INCLUDED_SROOK_REMOVE_EXTENT_HPP #include diff --git a/srook/type_traits/remove_pointer.hpp b/srook/type_traits/remove_pointer.hpp index 0304aa4..493f3ab 100644 --- a/srook/type_traits/remove_pointer.hpp +++ b/srook/type_traits/remove_pointer.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_REMOVE_POINTER_HPP #define INCLUDED_SROOK_REMOVE_POINTER_HPP #include diff --git a/srook/type_traits/remove_reference.hpp b/srook/type_traits/remove_reference.hpp index 2c55c88..7816a36 100644 --- a/srook/type_traits/remove_reference.hpp +++ b/srook/type_traits/remove_reference.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_REMOVE_REFERENCE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_REMOVE_REFERENCE_HPP #include diff --git a/srook/type_traits/remove_volatile.hpp b/srook/type_traits/remove_volatile.hpp index 8a8a689..6662104 100644 --- a/srook/type_traits/remove_volatile.hpp +++ b/srook/type_traits/remove_volatile.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_REMOVE_VOLATILE_HPP #define INCLUDED_SROOK_REMOVE_VOLATILE_HPP #include diff --git a/srook/type_traits/result_of.hpp b/srook/type_traits/result_of.hpp index 914cb83..b191d92 100644 --- a/srook/type_traits/result_of.hpp +++ b/srook/type_traits/result_of.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_RESULT_OF_HPP #define INCLUDED_SROOK_TYPE_TRAITS_RESULT_OF_HPP diff --git a/srook/type_traits/strong_variadic_check.hpp b/srook/type_traits/strong_variadic_check.hpp index 5f0758d..435abbd 100644 --- a/srook/type_traits/strong_variadic_check.hpp +++ b/srook/type_traits/strong_variadic_check.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_STRONG_VARIADIC_CHECK_HPP #define INCLUDED_SROOK_TYPE_TRAITS_STRONG_VARIADIC_CHECK_HPP diff --git a/srook/type_traits/true_false_type.hpp b/srook/type_traits/true_false_type.hpp index a4c03f4..008fcdd 100644 --- a/srook/type_traits/true_false_type.hpp +++ b/srook/type_traits/true_false_type.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_TRUE_FALSE_TYPE_HPP #define INCLUDED_SROOK_TYPE_TRAITS_TRUE_FALSE_TYPE_HPP diff --git a/srook/type_traits/underlying_type.hpp b/srook/type_traits/underlying_type.hpp index 96818f0..cd56c3e 100644 --- a/srook/type_traits/underlying_type.hpp +++ b/srook/type_traits/underlying_type.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TMPL_TYPE_TRAITS_UNDERYING_TYPE_HPP #define INCLUDED_SROOK_TMPL_TYPE_TRAITS_UNDERYING_TYPE_HPP diff --git a/srook/type_traits/variadic_conjunction.hpp b/srook/type_traits/variadic_conjunction.hpp index 9f0c78d..2a9356c 100644 --- a/srook/type_traits/variadic_conjunction.hpp +++ b/srook/type_traits/variadic_conjunction.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_TYPE_TRAITS_VARIADIC_CONJUNCTION_HPP #define INCLUDED_SROOK_TYPE_TRAITS_VARIADIC_CONJUNCTION_HPP diff --git a/srook/utility.hpp b/srook/utility.hpp index 6affe4a..35a53da 100644 --- a/srook/utility.hpp +++ b/srook/utility.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_UTILITY_HPP #define INCLUDED_SROOK_UTILITY_HPP diff --git a/srook/utility/declval.hpp b/srook/utility/declval.hpp index ac26ed7..285f998 100644 --- a/srook/utility/declval.hpp +++ b/srook/utility/declval.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_UTILITY_DECLVAL_HPP #define INCLUDED_SROOK_UTILITY_DECLVAL_HPP diff --git a/srook/utility/detail/non_supported/void_t.hpp b/srook/utility/detail/non_supported/void_t.hpp index 5b8a5c0..545bc9e 100644 --- a/srook/utility/detail/non_supported/void_t.hpp +++ b/srook/utility/detail/non_supported/void_t.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_UTILITY_DETAIL_NON_SUPPORTED_VOID_T_HPP #define INCLUDED_SROOK_UTILITY_DETAIL_NON_SUPPORTED_VOID_T_HPP diff --git a/srook/utility/enable_copy_move.hpp b/srook/utility/enable_copy_move.hpp index eb4687d..43df306 100644 --- a/srook/utility/enable_copy_move.hpp +++ b/srook/utility/enable_copy_move.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_UTILITY_ENABLE_COPY_MOVE_HPP #define INCLUDED_SROOK_UTILITY_ENABLE_COPY_MOVE_HPP diff --git a/srook/utility/in_place.hpp b/srook/utility/in_place.hpp index 58b5e8b..6226376 100644 --- a/srook/utility/in_place.hpp +++ b/srook/utility/in_place.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_UTILITY_IN_PLACE_HPP #define INCLUDED_SROOK_UTILITY_IN_PLACE_HPP #include diff --git a/srook/utility/initialize_iota.hpp b/srook/utility/initialize_iota.hpp index a87be02..75fcb51 100644 --- a/srook/utility/initialize_iota.hpp +++ b/srook/utility/initialize_iota.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_INIT_IOTA #define INCLUDED_INIT_IOTA #include diff --git a/srook/utility/lambda_wrapper.hpp b/srook/utility/lambda_wrapper.hpp index e477bda..10cd56b 100644 --- a/srook/utility/lambda_wrapper.hpp +++ b/srook/utility/lambda_wrapper.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_UTILITY_LAMBDA_WRAPPER_HPP #define INCLUDED_SROOK_UTILITY_LAMBDA_WRAPPER_HPP diff --git a/srook/utility/noncopyable.hpp b/srook/utility/noncopyable.hpp index b2ecc50..8df49f2 100644 --- a/srook/utility/noncopyable.hpp +++ b/srook/utility/noncopyable.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_UTILITY_NONCOPYABLE_HPP #define INCLUDED_SROOK_UTILITY_NONCOPYABLE_HPP diff --git a/srook/utility/void_t.hpp b/srook/utility/void_t.hpp index 9f21306..cc7294d 100644 --- a/srook/utility/void_t.hpp +++ b/srook/utility/void_t.hpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #ifndef INCLUDED_SROOK_UTILITY_VOID_T_HPP #define INCLUDED_SROOK_UTILITY_VOID_T_HPP #include diff --git a/tests/Dockerfile b/tests/Dockerfile new file mode 100644 index 0000000..36e88b9 --- /dev/null +++ b/tests/Dockerfile @@ -0,0 +1,29 @@ +FROM gcc:7.3.0 +SHELL ["/bin/bash", "-c"] +USER root +LABEL maintainer="Roki " +ARG cpuproc=1 +ARG sde_url +ENV DEBCONF_NOWARNINGS yes +RUN apt-get -qq update \ + && apt-get -qq -y upgrade \ + && apt-get install --no-install-recommends -qq -y \ + cppcheck \ + make \ + && apt-get -qq -y autoremove \ + && rm -rf /var/lib/apt/lists/* +RUN wget -q --no-check-certificate $sde_url -O sdetool.tar.bz2 \ + && tar -jxf sdetool.tar.bz2 \ + && wget -q -O boost_1_65_1.tar.gz http://sourceforge.net/projects/boost/files/boost/1.65.1/boost_1_65_1.tar.gz/download \ + && tar xzf boost_1_65_1.tar.gz \ + && cd boost_1_65_1 \ + && ./bootstrap.sh \ + && ./b2 link=static,shared install -d0 -j1 --prefix=/proj --with-program_options \ + && mv /proj/include/boost /usr/local/include/ \ + && mv /proj/lib/* /usr/local/lib/ \ + && cd / \ + && rm -r boost_1_65_1 boost_1_65_1.tar.gz sdetool.tar.bz2 +ENV LD_LIBRARY_PATH /usr/local/lib:$LD_LIBRARY_PATH + +WORKDIR /proj/tests +CMD ["./tests.sh"] diff --git a/tests/Makefile.zlib b/tests/Makefile.zlib index 2a94513..b6e0660 100644 --- a/tests/Makefile.zlib +++ b/tests/Makefile.zlib @@ -5,7 +5,7 @@ GXX := g++-7 INCLUDE_DIR := -I../ -isystem ../include FLAGS := -Wall -Wextra -pedantic -std=c++1z -LIBS := -L../lib -lboost_program_options -lz -pthread +LIBS := -L/usr/local/lib -lboost_program_options -lz -pthread TARGET1 := ./algorithm/coding/zlib/zlib_test.cpp TARGET2 := ./algorithm/coding/zlib/blob_decompress.cpp diff --git a/tests/cstring/Makefile b/tests/cstring/Makefile index 04f4532..8a48ecc 100644 --- a/tests/cstring/Makefile +++ b/tests/cstring/Makefile @@ -6,6 +6,7 @@ FLAGS := -DSROOK_CONFIG_ENABLE_AVX512_MEMCPY -mavx512f -Wall -Wextra -pedantic - INCLUDE_PATH := -I../ -isystem ../include -L../lib GXX = g++-7 BOOST_TEST_OP := --show_progress=yes --build_info=yes --detect_memory_leak=1 --result_code=yes --log_level=all +SDE := ../sde-external-8.56.0-2020-07-05-lin/sde64 TEST1 := cstring/memcpy/avx512_test.o @@ -17,6 +18,6 @@ $(TEST1): %.o: %.cpp cppcheck --enable=all $< $(GXX) $(FLAGS) $(INCLUDE_PATH) $< -o $@ run: - ../sde-external-8.12.0-2017-10-23-lin/sde64 -knl -- ./cstring/memcpy/avx512_test.o $(BOOST_TEST_OP) + $(SDE) -knl -- ./cstring/memcpy/avx512_test.o $(BOOST_TEST_OP) clean: $(RM) $(TEST1) diff --git a/tests/docker-compose.yml b/tests/docker-compose.yml new file mode 100644 index 0000000..2dd1fa3 --- /dev/null +++ b/tests/docker-compose.yml @@ -0,0 +1,15 @@ +version: '3' +services: + test: + image: roki/srook-cpp-lib-test:1.0.0 + build: + context: . + dockerfile: Dockerfile + args: + - cpuproc=1 + - sde_url=${SDE_URL} + container_name: srook-cpp-lib-test + volumes: + - ../:/proj + environment: + - sde_url diff --git a/tests/optional/applicative.cpp b/tests/optional/applicative.cpp index acc0f66..794eb95 100644 --- a/tests/optional/applicative.cpp +++ b/tests/optional/applicative.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #define BOOST_TEST_MAIN #include #include diff --git a/tests/optional/make_optional.cpp b/tests/optional/make_optional.cpp index b975df1..0665ebd 100644 --- a/tests/optional/make_optional.cpp +++ b/tests/optional/make_optional.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #define BOOST_TEST_MAIN #include diff --git a/tests/optional/monad.cpp b/tests/optional/monad.cpp index 5a7e531..ccc5742 100644 --- a/tests/optional/monad.cpp +++ b/tests/optional/monad.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #define BOOST_TEST_MAIN #include #include diff --git a/tests/optional/nullopt.cpp b/tests/optional/nullopt.cpp index 850fefe..c52214b 100644 --- a/tests/optional/nullopt.cpp +++ b/tests/optional/nullopt.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #define BOOST_TEST_MAIN #include #include diff --git a/tests/optional/requirements.cpp b/tests/optional/requirements.cpp index 303c378..2a566a6 100644 --- a/tests/optional/requirements.cpp +++ b/tests/optional/requirements.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #define BOOST_TEST_MAIN #include #include diff --git a/tests/optional/swap.cpp b/tests/optional/swap.cpp index 650e743..01bfb6d 100644 --- a/tests/optional/swap.cpp +++ b/tests/optional/swap.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #define BOOST_TEST_MAIN #include #include diff --git a/tests/tests.sh b/tests/tests.sh new file mode 100755 index 0000000..9bbd668 --- /dev/null +++ b/tests/tests.sh @@ -0,0 +1,17 @@ +#!/bin/bash +SDE_PATH=/sde-external-8.56.0-2020-07-05-lin/sde64 +BOOST_PGOPT_LIB="-L/usr/local/lib -lboost_program_options -lz -pthread" + +P=$(nproc) + +make -j$P GXX=g++ +make run GXX=g++ +make clean +make \ + -f Makefile.zlib \ + -j$P GXX=g++ LIBS="$BOOST_PGOPT_LIB" run clean +chmod +x ./cstring/sde_script.sh +./cstring/sde_script.sh 1 +./cstring/sde_script.sh 0 +make -f ./cstring/Makefile -j$P GXX=g++ SDE=$SDE_PATH +make -f ./cstring/Makefile GXX=g++ SDE=$SDE_PATH run clean diff --git a/tests/type_traits/any_constant_test.cpp b/tests/type_traits/any_constant_test.cpp index ce4a56e..26e2304 100644 --- a/tests/type_traits/any_constant_test.cpp +++ b/tests/type_traits/any_constant_test.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2011-2019 Roki. Distributed under the MIT License +// Copyright (C) 2011-2020 Roki. Distributed under the MIT License #include struct Plus1729{ diff --git a/travis/linux/before_install.sh b/travis/linux/before_install.sh index 976144c..694806e 100644 --- a/travis/linux/before_install.sh +++ b/travis/linux/before_install.sh @@ -1,10 +1,11 @@ #!/bin/bash -ex if [ "$TRAVIS_OS_NAME" = "linux" ]; then - sudo apt-get remove -qq -y postgresql-9.1 postgresql-9.2 postgresql-9.3 postgresql-9.4 postgresql-9.6 postgresql-contrib-9.6 + sudo apt-get remove -qq -y postgresql-9.1 postgresql-9.2 postgresql-9.3 postgresql-9.4 postgresql-9.6 postgresql-contrib-9.6 google-chrome-stable + sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 6B05F25D762E3157 sudo apt-get -qq -y update sudo add-apt-repository -r ppa:webupd8team/java -y sudo apt-get -qq upgrade -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --allow-unauthenticated - sudo apt-get -qq dist-upgrade -y; + sudo apt-get -qq dist-upgrade -y --allow-unauthenticated export CPU_NUM=$(egrep -c "^processor\s:\s[0-9]+$" /proc/cpuinfo); fi