diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-02-20 09:49:42 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-20 09:49:42 +1100 |
commit | aa987a217779e71f97ee4c9cce531aec1c861bf8 (patch) | |
tree | e51fcce110306d93bf93870f13a5ff7d6b575427 /source/core/StarPerlin.hpp | |
parent | d0099a6d790b66f21e4e266e569d64fb82fb0a81 (diff) | |
parent | 1c89042016c739815b2d70bcbef4673eef6b63e0 (diff) |
Merge branch 'main' into small-fixes
Diffstat (limited to 'source/core/StarPerlin.hpp')
-rw-r--r-- | source/core/StarPerlin.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source/core/StarPerlin.hpp b/source/core/StarPerlin.hpp index b042e47..294f80f 100644 --- a/source/core/StarPerlin.hpp +++ b/source/core/StarPerlin.hpp @@ -210,7 +210,7 @@ Perlin<Float>::Perlin(Perlin const& perlin) { template <typename Float> Perlin<Float>::Perlin(Perlin&& perlin) { - *this = move(perlin); + *this = std::move(perlin); } template <typename Float> @@ -261,10 +261,10 @@ Perlin<Float>& Perlin<Float>::operator=(Perlin&& perlin) { m_offset = perlin.m_offset; m_gain = perlin.m_gain; - p = move(perlin.p); - g3 = move(perlin.g3); - g2 = move(perlin.g2); - g1 = move(perlin.g1); + p = std::move(perlin.p); + g3 = std::move(perlin.g3); + g2 = std::move(perlin.g2); + g1 = std::move(perlin.g1); return *this; } |