From a3a9695174999c52ef882af489887787eb232e4e Mon Sep 17 00:00:00 2001 From: Denis Blank Date: Fri, 4 Jan 2019 13:35:44 +0100 Subject: [PATCH] Happy new year! --- CMakeLists.txt | 2 +- LICENSE.txt | 2 +- cmake/CMakeLists.txt | 2 +- cmake/compiler/clang.cmake | 2 +- cmake/compiler/gcc.cmake | 2 +- cmake/compiler/msvc.cmake | 2 +- cmake/configure_compiler.cmake | 2 +- cmake/configure_macros.cmake | 2 +- cmake/macros/group_sources.cmake | 2 +- doc/changelog.dox | 2 +- doc/configuration.dox | 2 +- doc/index.dox | 4 ++-- doc/installation.dox | 2 +- doc/tutorial-awaiting-continuables.dox | 2 +- doc/tutorial-chaining-continuables.dox | 2 +- doc/tutorial-connecting-continuables.dox | 2 +- doc/tutorial-creating-continuables.dox | 2 +- doc/tutorial-promisify-continuables.dox | 2 +- doc/tutorial-transforming-continuables.dox | 2 +- doc/tutorial.dox | 2 +- examples/example-ai/example-ai.cpp | 2 +- examples/example-asio/example-asio.cpp | 2 +- examples/example-slideshow/example-slideshow.cpp | 2 +- include/continuable/continuable-base.hpp | 2 +- include/continuable/continuable-connections.hpp | 2 +- include/continuable/continuable-coroutine.hpp | 2 +- include/continuable/continuable-primitives.hpp | 2 +- include/continuable/continuable-promise-base.hpp | 2 +- include/continuable/continuable-promisify.hpp | 2 +- include/continuable/continuable-result.hpp | 2 +- include/continuable/continuable-testing.hpp | 2 +- include/continuable/continuable-transforms.hpp | 2 +- include/continuable/continuable-traverse-async.hpp | 2 +- include/continuable/continuable-traverse.hpp | 2 +- include/continuable/continuable-types.hpp | 2 +- include/continuable/continuable.hpp | 2 +- .../continuable/detail/connection/connection-aggregated.hpp | 2 +- include/continuable/detail/connection/connection-all.hpp | 2 +- include/continuable/detail/connection/connection-any.hpp | 2 +- include/continuable/detail/connection/connection-seq.hpp | 2 +- include/continuable/detail/connection/connection.hpp | 2 +- include/continuable/detail/core/annotation.hpp | 2 +- include/continuable/detail/core/base.hpp | 2 +- include/continuable/detail/core/types.hpp | 2 +- include/continuable/detail/features.hpp | 2 +- include/continuable/detail/other/coroutines.hpp | 2 +- include/continuable/detail/other/erasure.hpp | 2 +- include/continuable/detail/other/promisify.hpp | 2 +- include/continuable/detail/other/testing.hpp | 2 +- include/continuable/detail/other/transforms.hpp | 2 +- include/continuable/detail/traversal/container-category.hpp | 2 +- include/continuable/detail/traversal/range.hpp | 2 +- include/continuable/detail/traversal/traverse-async.hpp | 2 +- include/continuable/detail/traversal/traverse.hpp | 2 +- include/continuable/detail/utility/flat-variant.hpp | 2 +- include/continuable/detail/utility/identity.hpp | 2 +- include/continuable/detail/utility/result-trait.hpp | 2 +- include/continuable/detail/utility/traits.hpp | 2 +- include/continuable/detail/utility/util.hpp | 2 +- test/link/test-link.cpp | 2 +- test/mock/test-mock.cpp | 2 +- test/playground/test-playground.cpp | 2 +- test/standalone/continuable-standalone.cpp | 2 +- test/threads/test-threads.cpp | 2 +- test/unit-test/multi/test-continuable-await.cpp | 2 +- test/unit-test/multi/test-continuable-base-chaining.cpp | 2 +- test/unit-test/multi/test-continuable-base-destruct.cpp | 2 +- test/unit-test/multi/test-continuable-base-errors.cpp | 2 +- test/unit-test/multi/test-continuable-base-multipath.cpp | 2 +- test/unit-test/multi/test-continuable-base-partial.cpp | 2 +- .../multi/test-continuable-connection-all-seq-ag-1.cpp | 2 +- .../multi/test-continuable-connection-all-seq-ag-2.cpp | 2 +- .../multi/test-continuable-connection-all-seq-op.cpp | 2 +- test/unit-test/multi/test-continuable-connection-all.cpp | 2 +- test/unit-test/multi/test-continuable-connection-any.cpp | 2 +- test/unit-test/multi/test-continuable-connection-seq.cpp | 2 +- test/unit-test/multi/test-continuable-erasure.cpp | 2 +- test/unit-test/multi/test-continuable-regression.cpp | 2 +- test/unit-test/multi/test-continuable-transforms.cpp | 2 +- test/unit-test/single/test-continuable-connection-noinst.cpp | 2 +- test/unit-test/single/test-continuable-erasure.cpp | 2 +- test/unit-test/single/test-continuable-flat-variant.cpp | 2 +- test/unit-test/single/test-continuable-forward-decl.cpp | 2 +- test/unit-test/single/test-continuable-promisify.cpp | 2 +- test/unit-test/single/test-continuable-result.cpp | 2 +- test/unit-test/single/test-continuable-traverse-async.cpp | 2 +- test/unit-test/single/test-continuable-traverse.cpp | 2 +- test/unit-test/test-continuable.cpp | 2 +- test/unit-test/test-continuable.hpp | 2 +- 89 files changed, 90 insertions(+), 90 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 06fe6da..40c0e59 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ -# Copyright(c) 2015 - 2018 Denis Blank +# Copyright(c) 2015 - 2019 Denis Blank # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files(the "Software"), to deal diff --git a/LICENSE.txt b/LICENSE.txt index 43c58d4..d145c91 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2015 - 2018 Denis Blank +Copyright (c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index fc88bc1..c53e05f 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -1,5 +1,5 @@ -# Copyright(c) 2015 - 2018 Denis Blank +# Copyright(c) 2015 - 2019 Denis Blank # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files(the "Software"), to deal diff --git a/cmake/compiler/clang.cmake b/cmake/compiler/clang.cmake index efa2da2..07d96a8 100644 --- a/cmake/compiler/clang.cmake +++ b/cmake/compiler/clang.cmake @@ -1,5 +1,5 @@ -# Copyright(c) 2015 - 2018 Denis Blank +# Copyright(c) 2015 - 2019 Denis Blank # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files(the "Software"), to deal diff --git a/cmake/compiler/gcc.cmake b/cmake/compiler/gcc.cmake index 64c0473..5b8afb6 100644 --- a/cmake/compiler/gcc.cmake +++ b/cmake/compiler/gcc.cmake @@ -1,5 +1,5 @@ -# Copyright(c) 2015 - 2018 Denis Blank +# Copyright(c) 2015 - 2019 Denis Blank # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files(the "Software"), to deal diff --git a/cmake/compiler/msvc.cmake b/cmake/compiler/msvc.cmake index 824d2a8..a382710 100644 --- a/cmake/compiler/msvc.cmake +++ b/cmake/compiler/msvc.cmake @@ -1,5 +1,5 @@ -# Copyright(c) 2015 - 2018 Denis Blank +# Copyright(c) 2015 - 2019 Denis Blank # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files(the "Software"), to deal diff --git a/cmake/configure_compiler.cmake b/cmake/configure_compiler.cmake index 5181b58..5e88fad 100644 --- a/cmake/configure_compiler.cmake +++ b/cmake/configure_compiler.cmake @@ -1,5 +1,5 @@ -# Copyright(c) 2015 - 2018 Denis Blank +# Copyright(c) 2015 - 2019 Denis Blank # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files(the "Software"), to deal diff --git a/cmake/configure_macros.cmake b/cmake/configure_macros.cmake index 7a19aaa..1f701d9 100644 --- a/cmake/configure_macros.cmake +++ b/cmake/configure_macros.cmake @@ -1,5 +1,5 @@ -# Copyright(c) 2015 - 2018 Denis Blank +# Copyright(c) 2015 - 2019 Denis Blank # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files(the "Software"), to deal diff --git a/cmake/macros/group_sources.cmake b/cmake/macros/group_sources.cmake index b1b5d70..b1f6f47 100644 --- a/cmake/macros/group_sources.cmake +++ b/cmake/macros/group_sources.cmake @@ -1,5 +1,5 @@ -# Copyright(c) 2015 - 2018 Denis Blank +# Copyright(c) 2015 - 2019 Denis Blank # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files(the "Software"), to deal diff --git a/doc/changelog.dox b/doc/changelog.dox index c80c791..104b7fd 100644 --- a/doc/changelog.dox +++ b/doc/changelog.dox @@ -1,5 +1,5 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/doc/configuration.dox b/doc/configuration.dox index 7174603..796face 100644 --- a/doc/configuration.dox +++ b/doc/configuration.dox @@ -1,5 +1,5 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/doc/index.dox b/doc/index.dox index b8e6869..9f9903b 100644 --- a/doc/index.dox +++ b/doc/index.dox @@ -1,5 +1,5 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal @@ -76,7 +76,7 @@ your personal experience in using the library to improve it. Continuable is licensed under the MIT license: > -> Copyright(c) 2015 - 2018 Denis Blank +> Copyright(c) 2015 - 2019 Denis Blank > > Permission is hereby granted, free of charge, to any person obtaining a copy > of this software and associated documentation files(the "Software"), to deal diff --git a/doc/installation.dox b/doc/installation.dox index f39a257..439f121 100644 --- a/doc/installation.dox +++ b/doc/installation.dox @@ -1,5 +1,5 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/doc/tutorial-awaiting-continuables.dox b/doc/tutorial-awaiting-continuables.dox index 45dafc8..4eb5764 100644 --- a/doc/tutorial-awaiting-continuables.dox +++ b/doc/tutorial-awaiting-continuables.dox @@ -1,5 +1,5 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/doc/tutorial-chaining-continuables.dox b/doc/tutorial-chaining-continuables.dox index 3d459c4..215dfbb 100644 --- a/doc/tutorial-chaining-continuables.dox +++ b/doc/tutorial-chaining-continuables.dox @@ -1,5 +1,5 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/doc/tutorial-connecting-continuables.dox b/doc/tutorial-connecting-continuables.dox index 6483957..d7d6a18 100644 --- a/doc/tutorial-connecting-continuables.dox +++ b/doc/tutorial-connecting-continuables.dox @@ -1,5 +1,5 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/doc/tutorial-creating-continuables.dox b/doc/tutorial-creating-continuables.dox index d79ce96..4e3cb1c 100644 --- a/doc/tutorial-creating-continuables.dox +++ b/doc/tutorial-creating-continuables.dox @@ -1,5 +1,5 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/doc/tutorial-promisify-continuables.dox b/doc/tutorial-promisify-continuables.dox index cdb1170..51aa192 100644 --- a/doc/tutorial-promisify-continuables.dox +++ b/doc/tutorial-promisify-continuables.dox @@ -1,5 +1,5 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/doc/tutorial-transforming-continuables.dox b/doc/tutorial-transforming-continuables.dox index 60aad44..8947f7f 100644 --- a/doc/tutorial-transforming-continuables.dox +++ b/doc/tutorial-transforming-continuables.dox @@ -1,5 +1,5 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/doc/tutorial.dox b/doc/tutorial.dox index 3b82870..aeac255 100644 --- a/doc/tutorial.dox +++ b/doc/tutorial.dox @@ -1,5 +1,5 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/examples/example-ai/example-ai.cpp b/examples/example-ai/example-ai.cpp index 723c1ca..92e8179 100644 --- a/examples/example-ai/example-ai.cpp +++ b/examples/example-ai/example-ai.cpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v3.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/examples/example-asio/example-asio.cpp b/examples/example-asio/example-asio.cpp index 5145ff9..179070a 100644 --- a/examples/example-asio/example-asio.cpp +++ b/examples/example-asio/example-asio.cpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v3.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/examples/example-slideshow/example-slideshow.cpp b/examples/example-slideshow/example-slideshow.cpp index d7dfa59..ca76ba8 100644 --- a/examples/example-slideshow/example-slideshow.cpp +++ b/examples/example-slideshow/example-slideshow.cpp @@ -1,5 +1,5 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/continuable-base.hpp b/include/continuable/continuable-base.hpp index 4b73274..88297ed 100644 --- a/include/continuable/continuable-base.hpp +++ b/include/continuable/continuable-base.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/continuable-connections.hpp b/include/continuable/continuable-connections.hpp index 5074f16..a98fd46 100644 --- a/include/continuable/continuable-connections.hpp +++ b/include/continuable/continuable-connections.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/continuable-coroutine.hpp b/include/continuable/continuable-coroutine.hpp index ee1680d..639007d 100644 --- a/include/continuable/continuable-coroutine.hpp +++ b/include/continuable/continuable-coroutine.hpp @@ -6,7 +6,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/continuable-primitives.hpp b/include/continuable/continuable-primitives.hpp index 771a2dc..5b61da1 100644 --- a/include/continuable/continuable-primitives.hpp +++ b/include/continuable/continuable-primitives.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/continuable-promise-base.hpp b/include/continuable/continuable-promise-base.hpp index 38d2e3d..045f008 100644 --- a/include/continuable/continuable-promise-base.hpp +++ b/include/continuable/continuable-promise-base.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/continuable-promisify.hpp b/include/continuable/continuable-promisify.hpp index 0919f02..ff345fc 100644 --- a/include/continuable/continuable-promisify.hpp +++ b/include/continuable/continuable-promisify.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/continuable-result.hpp b/include/continuable/continuable-result.hpp index 330ab53..53ade12 100644 --- a/include/continuable/continuable-result.hpp +++ b/include/continuable/continuable-result.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/continuable-testing.hpp b/include/continuable/continuable-testing.hpp index 34e8710..82e9090 100644 --- a/include/continuable/continuable-testing.hpp +++ b/include/continuable/continuable-testing.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/continuable-transforms.hpp b/include/continuable/continuable-transforms.hpp index 12c3852..f4fc27f 100644 --- a/include/continuable/continuable-transforms.hpp +++ b/include/continuable/continuable-transforms.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/continuable-traverse-async.hpp b/include/continuable/continuable-traverse-async.hpp index 883094c..ac62d29 100644 --- a/include/continuable/continuable-traverse-async.hpp +++ b/include/continuable/continuable-traverse-async.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/continuable-traverse.hpp b/include/continuable/continuable-traverse.hpp index b4e20b6..1a044e8 100644 --- a/include/continuable/continuable-traverse.hpp +++ b/include/continuable/continuable-traverse.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/continuable-types.hpp b/include/continuable/continuable-types.hpp index c45bb46..615837e 100644 --- a/include/continuable/continuable-types.hpp +++ b/include/continuable/continuable-types.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/continuable.hpp b/include/continuable/continuable.hpp index ca016a4..d26d8c3 100644 --- a/include/continuable/continuable.hpp +++ b/include/continuable/continuable.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/connection/connection-aggregated.hpp b/include/continuable/detail/connection/connection-aggregated.hpp index 42a3044..456eac0 100644 --- a/include/continuable/detail/connection/connection-aggregated.hpp +++ b/include/continuable/detail/connection/connection-aggregated.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/connection/connection-all.hpp b/include/continuable/detail/connection/connection-all.hpp index 8645a3c..d1bb2ee 100644 --- a/include/continuable/detail/connection/connection-all.hpp +++ b/include/continuable/detail/connection/connection-all.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/connection/connection-any.hpp b/include/continuable/detail/connection/connection-any.hpp index fbdde2b..976446e 100644 --- a/include/continuable/detail/connection/connection-any.hpp +++ b/include/continuable/detail/connection/connection-any.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/connection/connection-seq.hpp b/include/continuable/detail/connection/connection-seq.hpp index cf9cd99..a027360 100644 --- a/include/continuable/detail/connection/connection-seq.hpp +++ b/include/continuable/detail/connection/connection-seq.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/connection/connection.hpp b/include/continuable/detail/connection/connection.hpp index 92b07c2..c86da3b 100644 --- a/include/continuable/detail/connection/connection.hpp +++ b/include/continuable/detail/connection/connection.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/core/annotation.hpp b/include/continuable/detail/core/annotation.hpp index 6017a83..445eafd 100644 --- a/include/continuable/detail/core/annotation.hpp +++ b/include/continuable/detail/core/annotation.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/core/base.hpp b/include/continuable/detail/core/base.hpp index fc06bf4..866ba3e 100644 --- a/include/continuable/detail/core/base.hpp +++ b/include/continuable/detail/core/base.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/core/types.hpp b/include/continuable/detail/core/types.hpp index 5d5ae6f..55aa042 100644 --- a/include/continuable/detail/core/types.hpp +++ b/include/continuable/detail/core/types.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/features.hpp b/include/continuable/detail/features.hpp index f7905aa..e0fa0ee 100644 --- a/include/continuable/detail/features.hpp +++ b/include/continuable/detail/features.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/other/coroutines.hpp b/include/continuable/detail/other/coroutines.hpp index 4589f97..a7eaf9e 100644 --- a/include/continuable/detail/other/coroutines.hpp +++ b/include/continuable/detail/other/coroutines.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/other/erasure.hpp b/include/continuable/detail/other/erasure.hpp index fb30e21..6c333a9 100644 --- a/include/continuable/detail/other/erasure.hpp +++ b/include/continuable/detail/other/erasure.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/other/promisify.hpp b/include/continuable/detail/other/promisify.hpp index 6aa2067..3e6edca 100644 --- a/include/continuable/detail/other/promisify.hpp +++ b/include/continuable/detail/other/promisify.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/other/testing.hpp b/include/continuable/detail/other/testing.hpp index cb6bc31..93295e7 100644 --- a/include/continuable/detail/other/testing.hpp +++ b/include/continuable/detail/other/testing.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/other/transforms.hpp b/include/continuable/detail/other/transforms.hpp index 7484a9d..073bd64 100644 --- a/include/continuable/detail/other/transforms.hpp +++ b/include/continuable/detail/other/transforms.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/traversal/container-category.hpp b/include/continuable/detail/traversal/container-category.hpp index 9f754a6..75c5ff2 100644 --- a/include/continuable/detail/traversal/container-category.hpp +++ b/include/continuable/detail/traversal/container-category.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/traversal/range.hpp b/include/continuable/detail/traversal/range.hpp index a02e2da..9d3b412 100644 --- a/include/continuable/detail/traversal/range.hpp +++ b/include/continuable/detail/traversal/range.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/traversal/traverse-async.hpp b/include/continuable/detail/traversal/traverse-async.hpp index 147f602..405c7c1 100644 --- a/include/continuable/detail/traversal/traverse-async.hpp +++ b/include/continuable/detail/traversal/traverse-async.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/traversal/traverse.hpp b/include/continuable/detail/traversal/traverse.hpp index cbd1df0..23bfe12 100644 --- a/include/continuable/detail/traversal/traverse.hpp +++ b/include/continuable/detail/traversal/traverse.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/utility/flat-variant.hpp b/include/continuable/detail/utility/flat-variant.hpp index 0ea311c..834dae7 100644 --- a/include/continuable/detail/utility/flat-variant.hpp +++ b/include/continuable/detail/utility/flat-variant.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/utility/identity.hpp b/include/continuable/detail/utility/identity.hpp index 064ee6d..f1e6931 100644 --- a/include/continuable/detail/utility/identity.hpp +++ b/include/continuable/detail/utility/identity.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/utility/result-trait.hpp b/include/continuable/detail/utility/result-trait.hpp index d1b4ebd..c10b984 100644 --- a/include/continuable/detail/utility/result-trait.hpp +++ b/include/continuable/detail/utility/result-trait.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/utility/traits.hpp b/include/continuable/detail/utility/traits.hpp index c3034f3..11bff42 100644 --- a/include/continuable/detail/utility/traits.hpp +++ b/include/continuable/detail/utility/traits.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/include/continuable/detail/utility/util.hpp b/include/continuable/detail/utility/util.hpp index c3a0b88..99c9e0c 100644 --- a/include/continuable/detail/utility/util.hpp +++ b/include/continuable/detail/utility/util.hpp @@ -7,7 +7,7 @@ https://github.com/Naios/continuable v4.0.0 - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/link/test-link.cpp b/test/link/test-link.cpp index 9ff168d..4ef3314 100644 --- a/test/link/test-link.cpp +++ b/test/link/test-link.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/mock/test-mock.cpp b/test/mock/test-mock.cpp index e603179..fe54d4d 100644 --- a/test/mock/test-mock.cpp +++ b/test/mock/test-mock.cpp @@ -1,5 +1,5 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/playground/test-playground.cpp b/test/playground/test-playground.cpp index ee8d8ac..3cfa0df 100644 --- a/test/playground/test-playground.cpp +++ b/test/playground/test-playground.cpp @@ -1,5 +1,5 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/standalone/continuable-standalone.cpp b/test/standalone/continuable-standalone.cpp index 982145a..4a6f046 100644 --- a/test/standalone/continuable-standalone.cpp +++ b/test/standalone/continuable-standalone.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/threads/test-threads.cpp b/test/threads/test-threads.cpp index 6eb42b8..d89af15 100644 --- a/test/threads/test-threads.cpp +++ b/test/threads/test-threads.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/multi/test-continuable-await.cpp b/test/unit-test/multi/test-continuable-await.cpp index 73b1466..6118bf7 100644 --- a/test/unit-test/multi/test-continuable-await.cpp +++ b/test/unit-test/multi/test-continuable-await.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/multi/test-continuable-base-chaining.cpp b/test/unit-test/multi/test-continuable-base-chaining.cpp index 9206fd9..9108d54 100644 --- a/test/unit-test/multi/test-continuable-base-chaining.cpp +++ b/test/unit-test/multi/test-continuable-base-chaining.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/multi/test-continuable-base-destruct.cpp b/test/unit-test/multi/test-continuable-base-destruct.cpp index c8344c2..d993902 100644 --- a/test/unit-test/multi/test-continuable-base-destruct.cpp +++ b/test/unit-test/multi/test-continuable-base-destruct.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/multi/test-continuable-base-errors.cpp b/test/unit-test/multi/test-continuable-base-errors.cpp index 62d3d1b..cc130a9 100644 --- a/test/unit-test/multi/test-continuable-base-errors.cpp +++ b/test/unit-test/multi/test-continuable-base-errors.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/multi/test-continuable-base-multipath.cpp b/test/unit-test/multi/test-continuable-base-multipath.cpp index 2687b7a..e8e26be 100644 --- a/test/unit-test/multi/test-continuable-base-multipath.cpp +++ b/test/unit-test/multi/test-continuable-base-multipath.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/multi/test-continuable-base-partial.cpp b/test/unit-test/multi/test-continuable-base-partial.cpp index 7ee529c..5a4b646 100644 --- a/test/unit-test/multi/test-continuable-base-partial.cpp +++ b/test/unit-test/multi/test-continuable-base-partial.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/multi/test-continuable-connection-all-seq-ag-1.cpp b/test/unit-test/multi/test-continuable-connection-all-seq-ag-1.cpp index 6f53f6a..60be692 100644 --- a/test/unit-test/multi/test-continuable-connection-all-seq-ag-1.cpp +++ b/test/unit-test/multi/test-continuable-connection-all-seq-ag-1.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/multi/test-continuable-connection-all-seq-ag-2.cpp b/test/unit-test/multi/test-continuable-connection-all-seq-ag-2.cpp index a877cff..eec3c7a 100644 --- a/test/unit-test/multi/test-continuable-connection-all-seq-ag-2.cpp +++ b/test/unit-test/multi/test-continuable-connection-all-seq-ag-2.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/multi/test-continuable-connection-all-seq-op.cpp b/test/unit-test/multi/test-continuable-connection-all-seq-op.cpp index 9590c71..e7f3cb4 100644 --- a/test/unit-test/multi/test-continuable-connection-all-seq-op.cpp +++ b/test/unit-test/multi/test-continuable-connection-all-seq-op.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/multi/test-continuable-connection-all.cpp b/test/unit-test/multi/test-continuable-connection-all.cpp index 02eed57..939656d 100644 --- a/test/unit-test/multi/test-continuable-connection-all.cpp +++ b/test/unit-test/multi/test-continuable-connection-all.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/multi/test-continuable-connection-any.cpp b/test/unit-test/multi/test-continuable-connection-any.cpp index 9ac9c28..6a2955f 100644 --- a/test/unit-test/multi/test-continuable-connection-any.cpp +++ b/test/unit-test/multi/test-continuable-connection-any.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/multi/test-continuable-connection-seq.cpp b/test/unit-test/multi/test-continuable-connection-seq.cpp index fdcad86..c0ab21f 100644 --- a/test/unit-test/multi/test-continuable-connection-seq.cpp +++ b/test/unit-test/multi/test-continuable-connection-seq.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/multi/test-continuable-erasure.cpp b/test/unit-test/multi/test-continuable-erasure.cpp index d2fed1c..1afb144 100644 --- a/test/unit-test/multi/test-continuable-erasure.cpp +++ b/test/unit-test/multi/test-continuable-erasure.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/multi/test-continuable-regression.cpp b/test/unit-test/multi/test-continuable-regression.cpp index c46b0b1..45912de 100644 --- a/test/unit-test/multi/test-continuable-regression.cpp +++ b/test/unit-test/multi/test-continuable-regression.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/multi/test-continuable-transforms.cpp b/test/unit-test/multi/test-continuable-transforms.cpp index 6e4a206..9bf0f73 100644 --- a/test/unit-test/multi/test-continuable-transforms.cpp +++ b/test/unit-test/multi/test-continuable-transforms.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/single/test-continuable-connection-noinst.cpp b/test/unit-test/single/test-continuable-connection-noinst.cpp index fe5e392..24f6016 100644 --- a/test/unit-test/single/test-continuable-connection-noinst.cpp +++ b/test/unit-test/single/test-continuable-connection-noinst.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/single/test-continuable-erasure.cpp b/test/unit-test/single/test-continuable-erasure.cpp index 8107aac..8ffc18c 100644 --- a/test/unit-test/single/test-continuable-erasure.cpp +++ b/test/unit-test/single/test-continuable-erasure.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/single/test-continuable-flat-variant.cpp b/test/unit-test/single/test-continuable-flat-variant.cpp index 1d4731d..353fa8b 100644 --- a/test/unit-test/single/test-continuable-flat-variant.cpp +++ b/test/unit-test/single/test-continuable-flat-variant.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/single/test-continuable-forward-decl.cpp b/test/unit-test/single/test-continuable-forward-decl.cpp index ad5b06d..2004cca 100644 --- a/test/unit-test/single/test-continuable-forward-decl.cpp +++ b/test/unit-test/single/test-continuable-forward-decl.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/single/test-continuable-promisify.cpp b/test/unit-test/single/test-continuable-promisify.cpp index 44abd9c..336dd48 100644 --- a/test/unit-test/single/test-continuable-promisify.cpp +++ b/test/unit-test/single/test-continuable-promisify.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/single/test-continuable-result.cpp b/test/unit-test/single/test-continuable-result.cpp index b0da1a8..e35b590 100644 --- a/test/unit-test/single/test-continuable-result.cpp +++ b/test/unit-test/single/test-continuable-result.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/single/test-continuable-traverse-async.cpp b/test/unit-test/single/test-continuable-traverse-async.cpp index d4c2b7c..6029d90 100644 --- a/test/unit-test/single/test-continuable-traverse-async.cpp +++ b/test/unit-test/single/test-continuable-traverse-async.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/single/test-continuable-traverse.cpp b/test/unit-test/single/test-continuable-traverse.cpp index f3abd36..13ca804 100644 --- a/test/unit-test/single/test-continuable-traverse.cpp +++ b/test/unit-test/single/test-continuable-traverse.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/test-continuable.cpp b/test/unit-test/test-continuable.cpp index 88c3be6..aadfc63 100644 --- a/test/unit-test/test-continuable.cpp +++ b/test/unit-test/test-continuable.cpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal diff --git a/test/unit-test/test-continuable.hpp b/test/unit-test/test-continuable.hpp index 0f14f22..af9e3bc 100644 --- a/test/unit-test/test-continuable.hpp +++ b/test/unit-test/test-continuable.hpp @@ -1,6 +1,6 @@ /* - Copyright(c) 2015 - 2018 Denis Blank + Copyright(c) 2015 - 2019 Denis Blank Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal