Skip to content

Commit

Permalink
Merge pull request #6403 from STEllAR-GROUP/version
Browse files Browse the repository at this point in the history
Fixing copyright year
  • Loading branch information
hkaiser authored Jan 8, 2024
2 parents c374f26 + fd3780c commit b720ffe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions libs/core/config/cmake/templates/config_version.hpp.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2007-2023 Hartmut Kaiser
// Copyright (c) 2007-2024 Hartmut Kaiser
// Copyright (c) 2011 Bryce Lelbach
// Copyright (c) 2013 Adrian Serio
//
Expand Down Expand Up @@ -74,7 +74,7 @@ namespace hpx {
///////////////////////////////////////////////////////////////////////////////
#if !defined(HPX_CORE_EXPORTS) && !defined(HPX_NO_VERSION_CHECK)

// This is instantiated for each translation unit outside of the HPX core
// This is instantiated for each translation unit outside the HPX core
// library, forcing to resolve the variable HPX_CHECK_VERSION.
namespace {
// Note: this function is never executed.
Expand Down
8 changes: 4 additions & 4 deletions libs/core/version/src/version.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2011 Bryce Lelbach
// Copyright (c) 2011-2023 Hartmut Kaiser
// Copyright (c) 2011-2024 Hartmut Kaiser
//
// SPDX-License-Identifier: BSL-1.0
// Distributed under the Boost Software License, Version 1.0. (See accompanying
Expand Down Expand Up @@ -151,12 +151,12 @@ namespace hpx {

std::string copyright()
{
char const* const copyright =
constexpr char const* const copyright =
"HPX - The C++ Standard Library for Parallelism and Concurrency\n"
"(A general purpose parallel C++ runtime system for distributed "
"applications\n"
"of any scale).\n\n"
"Copyright (c) 2007-2023, The STE||AR Group,\n"
"Copyright (c) 2007-2024, The STE||AR Group,\n"
"http://stellar-group.org, email:hpx-users@stellar-group.org\n\n"
"Distributed under the Boost Software License, "
"Version 1.0. (See accompanying\n"
Expand Down Expand Up @@ -249,7 +249,7 @@ namespace hpx {

for (auto const& e : c.config_entries)
{
strm << " " << e << std::endl;
strm << " " << e << "\n";
}

strm << "\n";
Expand Down

0 comments on commit b720ffe

Please sign in to comment.