aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/ChunkPos.h
diff options
context:
space:
mode:
authorvoid_17 <heroerror3@gmail.com>2026-03-02 15:53:32 +0700
committervoid_17 <heroerror3@gmail.com>2026-03-02 15:53:32 +0700
commitd63f79325f85e014361eb8cf1e41eaebedb1ae71 (patch)
treed9f28714afd516bc2450f33b0a77c5e05ff4de90 /Minecraft.World/ChunkPos.h
parentd6ec138710461294c3ffd2723bc8a9f212d3471f (diff)
Get rid of MSVC's __int64
Use either int64_t, uint64_t or long long and unsigned long long, defined as per C++11 standard
Diffstat (limited to 'Minecraft.World/ChunkPos.h')
-rw-r--r--Minecraft.World/ChunkPos.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Minecraft.World/ChunkPos.h b/Minecraft.World/ChunkPos.h
index 2a3fda02..55bd1ebb 100644
--- a/Minecraft.World/ChunkPos.h
+++ b/Minecraft.World/ChunkPos.h
@@ -10,7 +10,7 @@ public:
ChunkPos(int x, int z);
- static __int64 hashCode(int x, int z);
+ static int64_t hashCode(int x, int z);
int hashCode();
double distanceToSqr(shared_ptr<Entity> e);
@@ -22,7 +22,7 @@ public:
TilePos getMiddleBlockPosition(int y);
wstring toString();
- static __int64 hash_fnct(const ChunkPos &k);
+ static int64_t hash_fnct(const ChunkPos &k);
static bool eq_test(const ChunkPos &x, const ChunkPos &y);
bool operator == (const ChunkPos &k) const { return (this->x == k.x) && ( this->z == k.z); }
ChunkPos & operator= (const ChunkPos & other) { x = other.x; z = other.z; return *this; }
@@ -30,12 +30,12 @@ public:
struct ChunkPosKeyHash
{
- inline __int64 operator()(const ChunkPos &k) const
+ inline int64_t operator()(const ChunkPos &k) const
{ return ChunkPos::hash_fnct(k); }
};
struct ChunkPosKeyEq
{
- inline bool operator()(const ChunkPos &x, const ChunkPos &y) const
+ inline bool operator()(const ChunkPos &x, const ChunkPos &y) const
{ return ChunkPos::eq_test(x, y); }
}; \ No newline at end of file