Skip to content

Commit 0225849

Browse files
committed
Fix compilation errors
1 parent a6d4fe7 commit 0225849

22 files changed

+43
-43
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
cff-version: 1.0.0
22
message: "If you use this software, please cite it as below."
3-
title: "Beman.Optional26"
3+
title: "beman.optional26"
44
url: "https://github.com/beman-project/Optional26"

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if(BUILD_TESTING)
2626
FetchContent_MakeAvailable(googletest)
2727
endif()
2828

29-
add_subdirectory(src/Beman/Optional26)
29+
add_subdirectory(src/beman/optional26)
3030
add_subdirectory(examples)
3131

3232
include(GNUInstallDirs)

examples/concept_checks.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
#include <optional>
5-
#include <Beman/Optional26/optional.hpp>
5+
#include <beman/optional26/optional.hpp>
66

77
#include <concepts>
88

examples/optional_ref.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// examples/optional_ref.cpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

4-
#include <Beman/Optional26/optional.hpp>
4+
#include <beman/optional26/optional.hpp>
55

66
#include <string>
77

examples/pythagorean_triples.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// examples/pythagorean_triples.cpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

4-
#include <Beman/Optional26/optional.hpp>
4+
#include <beman/optional26/optional.hpp>
55

66
#include <algorithm>
77
#include <cassert>

examples/range_loop.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// examples/range_loop.cpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

4-
#include <Beman/Optional26/optional.hpp>
4+
#include <beman/optional26/optional.hpp>
55
#include <iostream>
66

77
int main() {

examples/sample.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// examples/sample.cpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

4-
#include <Beman/Optional26/optional.hpp>
4+
#include <beman/optional26/optional.hpp>
55
#include <iostream>
66

77
int main() {

examples/std_vs_beman.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
#include <optional>
5-
#include <Beman/Optional26/optional.hpp>
5+
#include <beman/optional26/optional.hpp>
66

77
#include <cassert>
88
#include <iostream>

include/beman/optional26/detail/iterator.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// include/Beman/Optional26/detail/iterator.hpp -*-C++-*-
1+
// include/beman/optional26/detail/iterator.hpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
#ifndef BEMAN_OPTIONAL26_DETAIL_ITERATOR_HPP
55
#define BEMAN_OPTIONAL26_DETAIL_ITERATOR_HPP
66

7-
#include <Beman/Optional26/detail/stl_interfaces/iterator_interface.hpp>
7+
#include <beman/optional26/detail/stl_interfaces/iterator_interface.hpp>
88

99
#include <concepts>
1010
#include <iterator>

include/beman/optional26/detail/stl_interfaces/fwd.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// include/Beman/Optional26/detail/stl_interfaces/fwd.hpp -*-C++-*-
1+
// include/beman/optional26/detail/stl_interfaces/fwd.hpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
// Copyright (C) 2019 T. Zachary Laine
@@ -9,7 +9,7 @@
99
#ifndef BEMAN_OPTIONAL26_DETAIL_STL_INTERFACES_FWD_HPP
1010
#define BEMAN_OPTIONAL26_DETAIL_STL_INTERFACES_FWD_HPP
1111

12-
#include <Beman/Optional26/detail/stl_interfaces/config.hpp>
12+
#include <beman/optional26/detail/stl_interfaces/config.hpp>
1313

1414
#if BEMAN_OPTIONAL26_DETAIL_STL_INTERFACES_USE_CONCEPTS
1515
#include <ranges>

0 commit comments

Comments
 (0)