Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
Welcome 2021
Browse files Browse the repository at this point in the history
  • Loading branch information
d-frey committed Jan 1, 2021
1 parent 1b87e15 commit 428f0a5
Show file tree
Hide file tree
Showing 335 changed files with 336 additions and 336 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# The Art of C++
# Copyright (c) 2015-2020 Dr. Colin Hirsch and Daniel Frey
# Copyright (c) 2015-2021 Dr. Colin Hirsch and Daniel Frey
# Please see LICENSE for license or visit https://github.com/taocpp/json

.SUFFIXES:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ taoJSON is certified [Open Source] software.
It may be used for any purpose, including commercial purposes, at absolutely no cost.
It is distributed under the terms of the [MIT license] reproduced here.

> Copyright (c) 2015-2020 Dr. Colin Hirsch and Daniel Frey
> Copyright (c) 2015-2021 Dr. Colin Hirsch and Daniel Frey
>
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
>
Expand Down
2 changes: 1 addition & 1 deletion doc/Advanced-Use-Cases.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ void example( const std::string& filename )
Writing a recursive function that takes any value with positions and prints the types and line numbers of all sub-values is left as an exercise to the reader.
Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
2 changes: 1 addition & 1 deletion doc/Batteries-Included.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,4 +209,4 @@ ubjson_to_prety_jaxn
ubjson_to_prety_json
```

Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
2 changes: 1 addition & 1 deletion doc/Binding-Traits.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,4 +316,4 @@ struct my_traits< person >
Note that `binding::versions` uses the traits' `to()` method to fill-in an existing or default-constructed object, and that it does *not* clear or reset the target object between attempts!
Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
2 changes: 1 addition & 1 deletion doc/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ Pre-1.0.0 milestones in rough reverse chronological order.

Development of taoJSON started in October 2015 as an experiment to combine the [PEGTL](https://github.com/taocpp/PEGTL) JSON parser with a JSON value class based on a `union` that directly embeds standard containers for arrays, objects and strings.

Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
2 changes: 1 addition & 1 deletion doc/Common-Use-Cases.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,4 +145,4 @@ int main()
}
```

Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
2 changes: 1 addition & 1 deletion doc/Design-Decisions.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ Class `tao::json::value` has neither a `size()` nor an `empty()` method due to t
* Should a Value Pointer have size `1`, or should it forward `size()` and `empty()` to the pointee Value?
* Should an Opaque Pointer have size `1`, or should it report the size of the JSON representation of the pointee?

Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
2 changes: 1 addition & 1 deletion doc/Events-Interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,4 @@ struct reduced_consumer
* [Events Transformers](Batteries-Included.md#events-transformers)
* [Convenience Functions](Batteries-Included.md#convenience-functions)

Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
2 changes: 1 addition & 1 deletion doc/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ The taocpp/json library is built around two main concepts, the [*Value class*](V

See also the page on [common use cases](Common-Use-Cases.md) for how to do some frequently required things.

Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
2 changes: 1 addition & 1 deletion doc/Instance-Sharing.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,4 @@ Occurrences of `VALUE_PTR` are replaced with a deep copy of the pointee.
Occurrences of `OPAQUE_PTR` are replaced with a JSON Value created by using the `produce()` function from the traits as Events producer (or the function supplied as second argument to `basic_value::assign_opaque_ptr()`) together with `tao::json::events::to_basic_value` as Events consumer.
Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
2 changes: 1 addition & 1 deletion doc/Interoperability.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ The following JSON-esque formats are currently unsupported.
* YAML
* VelocyPack

Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
2 changes: 1 addition & 1 deletion doc/Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ The main parts of the JSON library are
* The [Value Class](Value-Class.md) can use pointers to other Value Class instances to re-use (parts of) other Values.
* The [Value Class](Value-Class.md) can use pointers to arbitrary objects (restricts the set of functions on the Value).

Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
2 changes: 1 addition & 1 deletion doc/Parser-Interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ Additional functions for the CBOR parts parser that throw when they encounter an
tao::string_view key_view();
```

Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
2 changes: 1 addition & 1 deletion doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@
* [Scratchpad](Scratchpad.md)
* [Changelog](Changelog.md)

Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
2 changes: 1 addition & 1 deletion doc/Scratchpad.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ TODO!
* `nlohmann::to_value`
* TODO: Anything missing?

Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
2 changes: 1 addition & 1 deletion doc/Type-Traits.md
Original file line number Diff line number Diff line change
Expand Up @@ -361,4 +361,4 @@ Given that `std::string`, `int`, `std::tuple`, `std::vector`, `std::shared_ptr`,
std::map< std::string, std::shared_ptr< std::vector< std::tuple< int, int, int > > >
```

Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
2 changes: 1 addition & 1 deletion doc/Value-Class.md
Original file line number Diff line number Diff line change
Expand Up @@ -522,4 +522,4 @@ Comparison between a JSON Value and another type is performed by either

See the [documentation on Type Traits](Type-Traits.md#compare-value-with-type) for details on how to enable comparison operators without temporary Values for a type.

Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
2 changes: 1 addition & 1 deletion include/tao/json.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2015-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2015-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/basic_value.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2017-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BASIC_VALUE_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/binary.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2017-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BINARY_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/binary_view.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2017-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BINARY_VIEW_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/binding.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BINDING_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/binding/constant.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BINDING_CONSTANT_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/binding/element.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BINDING_ELEMENT_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/binding/factory.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BINDING_FACTORY_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/binding/for_nothing_value.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BINDING_FOR_NOTHING_VALUE_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/binding/for_unknown_key.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BINDING_FOR_UNKNOWN_KEY_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/binding/inherit.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BINDING_INHERIT_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/binding/internal/array.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BINDING_INTERNAL_ARRAY_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/binding/internal/inherit.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BINDING_INTERNAL_INHERIT_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/binding/internal/object.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BINDING_INTERNAL_OBJECT_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/binding/internal/type_key.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BINDING_INTERNAL_TYPE_KEY_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/binding/member.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BINDING_MEMBER_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/binding/member_kind.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BINDING_MEMBER_KIND_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/binding/versions.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_BINDING_VERSIONS_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2017-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/consume_file.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_CONSUME_FILE_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/consume_string.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_CONSUME_STRING_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/events/from_binary.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2020-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_EVENTS_FROM_BINARY_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/events/from_file.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_EVENTS_FROM_FILE_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/events/from_input.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2019-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2019-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_EVENTS_FROM_INPUT_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/events/from_string.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2017-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_EVENTS_FROM_STRING_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/events/to_stream.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2017-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_EVENTS_TO_STREAM_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/events/to_string.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2017-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_EVENTS_TO_STRING_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/from_binary.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2020-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_FROM_BINARY_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/from_file.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_FROM_FILE_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/from_input.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2019-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2019-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_FROM_INPUT_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/from_string.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2017-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_FROM_STRING_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/internal/grammar.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2017-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_INTERNAL_GRAMMAR_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/internal/major.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2017-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_INTERNAL_MAJOR_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/parts_parser.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_PARTS_PARSER_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/to_stream.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2017-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_TO_STREAM_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/cbor/to_string.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2017-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CBOR_TO_STRING_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/consume.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CONSUME_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/consume_file.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CONSUME_FILE_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/consume_string.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CONSUME_STRING_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/contrib/array_traits.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CONTRIB_ARRAY_TRAITS_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/contrib/deque_traits.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CONTRIB_DEQUE_TRAITS_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/contrib/diff.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2019-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2019-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CONTRIB_DIFF_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/contrib/get.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CONTRIB_GET_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/contrib/internal/array_traits.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CONTRIB_INTERNAL_ARRAY_TRAITS_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/contrib/internal/indirect_traits.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CONTRIB_INTERNAL_INDIRECT_TRAITS_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/contrib/internal/object_traits.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CONTRIB_INTERNAL_OBJECT_TRAITS_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/contrib/internal/type_traits.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CONTRIB_INTERNAL_TYPE_TRAITS_HPP
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/contrib/list_traits.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey
// Copyright (c) 2018-2021 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_CONTRIB_LIST_TRAITS_HPP
Expand Down
Loading

0 comments on commit 428f0a5

Please sign in to comment.