From 7c495e924e9c2c979b772071e92ca30b6d712bef Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Wed, 5 Oct 2016 18:45:08 +0200 Subject: pcg_random: Add missing '&' sigil --- vendor/pcg-cpp-0.98/include/pcg_extras.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vendor') diff --git a/vendor/pcg-cpp-0.98/include/pcg_extras.hpp b/vendor/pcg-cpp-0.98/include/pcg_extras.hpp index ec3e5694..9b2e4e27 100644 --- a/vendor/pcg-cpp-0.98/include/pcg_extras.hpp +++ b/vendor/pcg-cpp-0.98/include/pcg_extras.hpp @@ -220,7 +220,7 @@ operator<<(std::basic_ostream&out, uint8_t value) template std::basic_istream& -operator>>(std::basic_istream& in, uint8_t target) +operator>>(std::basic_istream& in, uint8_t &target) { uint32_t value = 0xdecea5edU; in >> value; -- cgit v1.2.3