summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/glm/test/gtc/gtc_round.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2017-02-25 14:11:44 +1100
committer Vas Crabb <vas@vastheman.com>2017-02-25 14:11:44 +1100
commitfeb7c5dc791e7273967f7b77f0aaf66c8fa4737a (patch)
tree574c156e9dcca6d9da2424c4c025a0b38d001dce /3rdparty/glm/test/gtc/gtc_round.cpp
parent8530f35a98b9d89f2874fa47d395b4a55219d479 (diff)
Update GLM to tip of stable branch (0.9.8.5 pre-release) - fixes build with MacPorts clang
(nw) In future, could people please use stable branches when updating 3rd-party libraries, not unstable development snapshots? It will help with stability.
Diffstat (limited to '3rdparty/glm/test/gtc/gtc_round.cpp')
-rw-r--r--3rdparty/glm/test/gtc/gtc_round.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/3rdparty/glm/test/gtc/gtc_round.cpp b/3rdparty/glm/test/gtc/gtc_round.cpp
index b8f44caa978..4575066c19d 100644
--- a/3rdparty/glm/test/gtc/gtc_round.cpp
+++ b/3rdparty/glm/test/gtc/gtc_round.cpp
@@ -8,7 +8,7 @@
namespace isPowerOfTwo
{
- template<typename genType>
+ template <typename genType>
struct type
{
genType Value;
@@ -146,7 +146,7 @@ namespace isPowerOfTwo
namespace ceilPowerOfTwo_advanced
{
- template<typename genIUType>
+ template <typename genIUType>
GLM_FUNC_QUALIFIER genIUType highestBitValue(genIUType Value)
{
genIUType tmp = Value;
@@ -159,13 +159,13 @@ namespace ceilPowerOfTwo_advanced
return result;
}
- template<typename genType>
+ template <typename genType>
GLM_FUNC_QUALIFIER genType ceilPowerOfTwo_loop(genType value)
{
return glm::isPowerOfTwo(value) ? value : highestBitValue(value) << 1;
}
- template<typename genType>
+ template <typename genType>
struct type
{
genType Value;
@@ -332,7 +332,7 @@ namespace ceilPowerOfTwo
namespace floorMultiple
{
- template<typename genType>
+ template <typename genType>
struct type
{
genType Source;
@@ -372,7 +372,7 @@ namespace floorMultiple
namespace ceilMultiple
{
- template<typename genType>
+ template <typename genType>
struct type
{
genType Source;