[Scummvm-git-logs] scummvm master -> 8d10fbe1bae8da7d248179b334fdaf4093ab7f2a

criezy criezy at scummvm.org
Tue May 29 00:00:56 CEST 2018


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
8d10fbe1ba COMMON: coding convention improvements for degree conversion funcs


Commit: 8d10fbe1bae8da7d248179b334fdaf4093ab7f2a
    https://github.com/scummvm/scummvm/commit/8d10fbe1bae8da7d248179b334fdaf4093ab7f2a
Author: David Fioramonti (dafioram at gmail.com)
Date: 2018-05-28T23:00:53+01:00

Commit Message:
COMMON: coding convention improvements for degree conversion funcs

Removed whitespace before template keyword.

Made template types camel case starting with lowercase.

Changed paths:
    common/math.h


diff --git a/common/math.h b/common/math.h
index a8e0768..7b2ec60 100644
--- a/common/math.h
+++ b/common/math.h
@@ -110,20 +110,20 @@ inline int intLog2(uint32 v) {
 // Convert radians to degrees
 // Input and Output type can be different
 // Upconvert everything to floats
-template <class inputT, class outputT> 
-inline outputT rad2deg(inputT rad) {
-	return (outputT)( (float)rad * (float)57.2957795130823); // 180.0/M_PI = 57.2957795130823
+template<class InputT, class OutputT> 
+inline OutputT rad2deg(InputT rad) {
+	return (OutputT)( (float)rad * (float)57.2957795130823); // 180.0/M_PI = 57.2957795130823
 }
 
 // Handle the case differently when the input type is double
-template <class outputT> 
-inline outputT rad2deg(double rad) {
-	return (outputT)( rad * 57.2957795130823);
+template<class OutputT> 
+inline OutputT rad2deg(double rad) {
+	return (OutputT)( rad * 57.2957795130823);
 }
 
 // Convert radians to degrees
 // Input and Output type are the same
-template <class T> 
+template<class T> 
 inline T rad2deg(T rad) {
 	return rad2deg<T,T>(rad);
 }
@@ -131,20 +131,20 @@ inline T rad2deg(T rad) {
 // Convert degrees to radians
 // Input and Output type can be different
 // Upconvert everything to floats
-template <class inputT, class outputT> 
-inline outputT deg2rad(inputT deg) {
-	return (outputT)( (float)deg * (float)0.0174532925199433); // M_PI/180.0 = 0.0174532925199433
+template<class InputT, class OutputT> 
+inline OutputT deg2rad(InputT deg) {
+	return (OutputT)( (float)deg * (float)0.0174532925199433); // M_PI/180.0 = 0.0174532925199433
 }
 
 // Handle the case differently when the input type is double
-template <class outputT> 
-inline outputT deg2rad(double deg) {
-	return (outputT)( deg * 0.0174532925199433);
+template<class OutputT> 
+inline OutputT deg2rad(double deg) {
+	return (OutputT)( deg * 0.0174532925199433);
 }
 
 // Convert degrees to radians
 // Input and Output type are the same
-template <class T> 
+template<class T> 
 inline T deg2rad(T deg) {
 	return deg2rad<T,T>(deg);
 }





More information about the Scummvm-git-logs mailing list