-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Support for MSVC C++20. Fixed warnings and issues at \W4 Improved cmake presets support for VSCode. New libraries: - macro_utilities.hpp - ADOBE_STRINGIZE(x) - ADOBE_LINE_STRING() - ADOBE_MESSAGE(message) - exception.hpp - terminate(message) - append.hpp - append(container, range) - unique.hpp - sort_unique(container) Co-authored-by: Dave Abrahams <dabrahams@adobe.com>
- Loading branch information
1 parent
d9f4321
commit ea5e048
Showing
37 changed files
with
451 additions
and
395 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,5 @@ gh-pages/ | |
|
||
documentation/doxyfile.bak | ||
build_asl/ | ||
.vs/ | ||
.vscode/ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
Copyright 2024 Adobe | ||
Distributed under the Boost Software License, Version 1.0. | ||
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | ||
*/ | ||
/**************************************************************************************************/ | ||
|
||
#ifndef ADOBE_ALGORITHM_APPEND_HPP | ||
#define ADOBE_ALGORITHM_APPEND_HPP | ||
|
||
#include <iterator> | ||
|
||
/**************************************************************************************************/ | ||
|
||
namespace adobe { | ||
|
||
/**************************************************************************************************/ | ||
|
||
/// Insert the elements of _input_range_ `r` at the end of the _sequence container_ `c`, | ||
/// returning the position corresponding to the incoming `end` of `c`. | ||
template <class T, class R> | ||
inline auto append(T& c, const R& r) { | ||
return c.insert(std::end(c), std::begin(r), std::end(r)); | ||
} | ||
|
||
/**************************************************************************************************/ | ||
|
||
} // namespace adobe | ||
|
||
/**************************************************************************************************/ | ||
|
||
#endif |
Oops, something went wrong.