-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
6 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
///////////////////////// ankerl::unordered_dense::{map, set} ///////////////////////// | ||
|
||
// A fast & densely stored hashmap and hashset based on robin-hood backward shift deletion. | ||
// Version 4.4.0 | ||
// Version 4.5.0 | ||
// https://github.com/martinus/unordered_dense | ||
// | ||
// Licensed under the MIT License <http://opensource.org/licenses/MIT>. | ||
// SPDX-License-Identifier: MIT | ||
// Copyright (c) 2022-2023 Martin Leitner-Ankerl <[email protected]> | ||
// Copyright (c) 2022-2024 Martin Leitner-Ankerl <[email protected]> | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -31,7 +31,7 @@ | |
|
||
// see https://semver.org/spec/v2.0.0.html | ||
#define ANKERL_UNORDERED_DENSE_VERSION_MAJOR 4 // NOLINT(cppcoreguidelines-macro-usage) incompatible API changes | ||
#define ANKERL_UNORDERED_DENSE_VERSION_MINOR 4 // NOLINT(cppcoreguidelines-macro-usage) backwards compatible functionality | ||
#define ANKERL_UNORDERED_DENSE_VERSION_MINOR 5 // NOLINT(cppcoreguidelines-macro-usage) backwards compatible functionality | ||
#define ANKERL_UNORDERED_DENSE_VERSION_PATCH 0 // NOLINT(cppcoreguidelines-macro-usage) backwards compatible bug fixes | ||
|
||
// API versioning with inline namespace, see https://www.foonathan.net/2018/11/inline-namespaces/ | ||
|
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