Skip to content

Commit 9f4e1b4

Browse files
committed
Correct attribution for result_type fix (origin: PR #83 by timo-eichhorn)
1 parent 359fbce commit 9f4e1b4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CREDITS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ This modernized fork of `pcg-cpp` by **Total-Random** integrates several critica
1515
- **Description:** Enables `__declspec(empty_bases)` on MSVC to optimize the memory footprint of RNG objects.
1616

1717
### 3. Public `result_type` in `seed_seq_from`
18-
- **Origin:** [imneme/pcg-cpp commit 1eeda5f](https://github.com/imneme/pcg-cpp/commit/1eeda5f893d9595a855cdfa5d53dbbdd08c091b7)
19-
- **Author:** [oneill](https://github.com/imneme) (Melissa O'Neill)
18+
- **Origin:** [imneme/pcg-cpp PR #83](https://github.com/imneme/pcg-cpp/pull/83)
19+
- **Author:** [timo-eichhorn](https://github.com/timo-eichhorn)
2020
- **Description:** Makes `result_type` public to comply with the C++ `SeedSequence` concept.
2121

2222
### 4. GCC Warning Fixes

include/pcg_extras.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ class seed_seq_from {
579579
RngType rng_;
580580

581581
public:
582-
// This fix is from imneme/pcg-cpp commit 1eeda5f
582+
// This fix is from imneme/pcg-cpp PR #83
583583
typedef uint_least32_t result_type;
584584

585585
template<typename... Args>

0 commit comments

Comments
 (0)