Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Stockner <lukas.stockner@freenet.de>2018-04-29 10:27:44 +0300
committerLukas Stockner <lukas.stockner@freenet.de>2018-04-29 10:28:41 +0300
commit16c05161e76621a1943f27abd6bd9f7ee5564efd (patch)
treec93f24db1679d69ac9b57136f2f528b1cbcb0eea /intern/cycles/util
parent60f4cb24da7462766ea73318f1ff446d803f6319 (diff)
Cycles: Cleanup: Remove double semicolons
Diffstat (limited to 'intern/cycles/util')
-rw-r--r--intern/cycles/util/util_math_float3.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/util/util_math_float3.h b/intern/cycles/util/util_math_float3.h
index a0a62ae95df..f5149fe13ed 100644
--- a/intern/cycles/util/util_math_float3.h
+++ b/intern/cycles/util/util_math_float3.h
@@ -67,7 +67,7 @@ ccl_device_inline float len_squared(const float3 a);
ccl_device_inline float3 saturate3(float3 a);
ccl_device_inline float3 safe_normalize(const float3 a);
-ccl_device_inline float3 normalize_len(const float3 a, float *t);;
+ccl_device_inline float3 normalize_len(const float3 a, float *t);
ccl_device_inline float3 safe_normalize_len(const float3 a, float *t);
ccl_device_inline float3 interp(float3 a, float3 b, float t);