summaryrefslogtreecommitdiffstats
path: root/src/Vector3.h
diff options
context:
space:
mode:
authorWoazboat <f.kargl@posteo.de>2015-04-29 00:27:15 +0200
committerWoazboat <f.kargl@posteo.de>2015-04-29 00:27:15 +0200
commit2359fc67055cadd369f6c52805778531efd47ecd (patch)
tree8d252d0d2b8a6d5777c3b45cfe9af02656d4c17c /src/Vector3.h
parentChanged Tracer::m_NormalTable to static array (diff)
downloadcuberite-2359fc67055cadd369f6c52805778531efd47ecd.tar
cuberite-2359fc67055cadd369f6c52805778531efd47ecd.tar.gz
cuberite-2359fc67055cadd369f6c52805778531efd47ecd.tar.bz2
cuberite-2359fc67055cadd369f6c52805778531efd47ecd.tar.lz
cuberite-2359fc67055cadd369f6c52805778531efd47ecd.tar.xz
cuberite-2359fc67055cadd369f6c52805778531efd47ecd.tar.zst
cuberite-2359fc67055cadd369f6c52805778531efd47ecd.zip
Diffstat (limited to 'src/Vector3.h')
-rw-r--r--src/Vector3.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Vector3.h b/src/Vector3.h
index ede6cc851..6164721da 100644
--- a/src/Vector3.h
+++ b/src/Vector3.h
@@ -78,7 +78,7 @@ public:
);
}
- inline bool hasNonZeroLength(void) const
+ inline bool HasNonZeroLength(void) const
{
return ((x != 0) || (y != 0) || (z != 0));
}