Skip to content

Commit c579ad0

Browse files
Merge pull request #568 from BehaviorTree/v4.2
V4.2
2 parents 889afc4 + 94352c9 commit c579ad0

File tree

154 files changed

+1134
-484
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

154 files changed

+1134
-484
lines changed

3rdparty/lexy/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Copyright (C) 2020-2022 Jonathan Müller and lexy contributors
1+
# Copyright (C) 2020-2023 Jonathan Müller and lexy contributors
22
# SPDX-License-Identifier: BSL-1.0
33

44
cmake_minimum_required(VERSION 3.8)
5-
project(lexy VERSION 2022.12.0 LANGUAGES CXX)
5+
project(lexy VERSION 2022.12.1 LANGUAGES CXX)
66

77
set(LEXY_USER_CONFIG_HEADER "" CACHE FILEPATH "The user config header for lexy.")
88
option(LEXY_FORCE_CPP17 "Whether or not lexy should use C++17 even if compiler supports C++20." OFF)
@@ -46,7 +46,7 @@ if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
4646
include(CMakePackageConfigHelpers)
4747
include(GNUInstallDirs)
4848

49-
install(TARGETS lexy_core lexy_file lexy_unicode lexy_ext _lexy_base lexy_dev
49+
install(TARGETS lexy lexy_core lexy_file lexy_unicode lexy_ext _lexy_base lexy_dev
5050
EXPORT ${PROJECT_NAME}Targets
5151
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
5252
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}

3rdparty/lexy/cmake/lexyConfig.cmake.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2020-2022 Jonathan Müller and lexy contributors
1+
# Copyright (C) 2020-2023 Jonathan Müller and lexy contributors
22
# SPDX-License-Identifier: BSL-1.0
33

44
# lexy CMake configuration file.

3rdparty/lexy/include/lexy/_detail/any_ref.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2020-2022 Jonathan Müller and lexy contributors
1+
// Copyright (C) 2020-2023 Jonathan Müller and lexy contributors
22
// SPDX-License-Identifier: BSL-1.0
33

44
#ifndef LEXY_DETAIL_ANY_REF_HPP_INCLUDED

3rdparty/lexy/include/lexy/_detail/assert.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2020-2022 Jonathan Müller and lexy contributors
1+
// Copyright (C) 2020-2023 Jonathan Müller and lexy contributors
22
// SPDX-License-Identifier: BSL-1.0
33

44
#ifndef LEXY_DETAIL_ASSERT_HPP_INCLUDED

3rdparty/lexy/include/lexy/_detail/buffer_builder.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2020-2022 Jonathan Müller and lexy contributors
1+
// Copyright (C) 2020-2023 Jonathan Müller and lexy contributors
22
// SPDX-License-Identifier: BSL-1.0
33

44
#ifndef LEXY_DETAIL_BUFFER_BUILDER_HPP_INCLUDED
@@ -38,7 +38,7 @@ class buffer_builder
3838
::operator delete(_data);
3939
}
4040

41-
buffer_builder(const buffer_builder&) = delete;
41+
buffer_builder(const buffer_builder&) = delete;
4242
buffer_builder& operator=(const buffer_builder&) = delete;
4343

4444
// The total capacity: read + write.

3rdparty/lexy/include/lexy/_detail/code_point.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2020-2022 Jonathan Müller and lexy contributors
1+
// Copyright (C) 2020-2023 Jonathan Müller and lexy contributors
22
// SPDX-License-Identifier: BSL-1.0
33

44
#ifndef LEXY_DETAIL_CODE_POINT_HPP_INCLUDED

3rdparty/lexy/include/lexy/_detail/config.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2020-2022 Jonathan Müller and lexy contributors
1+
// Copyright (C) 2020-2023 Jonathan Müller and lexy contributors
22
// SPDX-License-Identifier: BSL-1.0
33

44
#ifndef LEXY_DETAIL_CONFIG_HPP_INCLUDED

3rdparty/lexy/include/lexy/_detail/detect.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2020-2021 Müller <[email protected]>
1+
// Copyright (C) 2020-2023 Jonathan Müller and lexy contributors
22
// SPDX-License-Identifier: BSL-1.0
33

44
#ifndef LEXY_DETAIL_DETECT_HPP_INCLUDED

3rdparty/lexy/include/lexy/_detail/integer_sequence.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2020-2022 Jonathan Müller and lexy contributors
1+
// Copyright (C) 2020-2023 Jonathan Müller and lexy contributors
22
// SPDX-License-Identifier: BSL-1.0
33

44
#ifndef LEXY_DETAIL_INTEGER_SEQUENCE_HPP_INCLUDED

3rdparty/lexy/include/lexy/_detail/invoke.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2020-2022 Jonathan Müller and lexy contributors
1+
// Copyright (C) 2020-2023 Jonathan Müller and lexy contributors
22
// SPDX-License-Identifier: BSL-1.0
33

44
#ifndef LEXY_DETAIL_INVOKE_HPP_INCLUDED

0 commit comments

Comments
 (0)