From dad0b0542c08240f4431a34d46e6676461e0d83b Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Fri, 7 Jan 2005 04:58:47 +0000 Subject: updated for OSX better templates, some minor changes fix for showing attributes on select (and recreate the object on edit) cleanups svn path=/trunk/; revision=2469 --- externals/grill/flext/source/flsimd.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'externals/grill/flext/source/flsimd.cpp') diff --git a/externals/grill/flext/source/flsimd.cpp b/externals/grill/flext/source/flsimd.cpp index 007a1fe0..9ed22de7 100755 --- a/externals/grill/flext/source/flsimd.cpp +++ b/externals/grill/flext/source/flsimd.cpp @@ -2,7 +2,7 @@ flext - C++ layer for Max/MSP and pd (pure data) externals -Copyright (c) 2001-2003 Thomas Grill (xovo@gmx.net) +Copyright (c) 2001-2005 Thomas Grill (gr@grrrr.org) For information on usage and redistribution, and for a DISCLAIMER OF ALL WARRANTIES, see the file, "license.txt," in this distribution. @@ -47,7 +47,7 @@ WARRANTIES, see the file, "license.txt," in this distribution. #include #include - #elif FLEXT_CPU == FLEXT_CPU_PPC && defined(__GNUG__) && defined(__VEC__) + #elif FLEXT_CPU == FLEXT_CPU_PPC && defined(__GNUC__) && defined(__VEC__) #include #include #endif @@ -344,7 +344,7 @@ inline void StoreUnaligned( vector float v,float *where) inline bool IsVectorAligned(const void *where) { - return reinterpret_cast(where)&(sizeof(vector float)-1) == 0; + return (reinterpret_cast(where)&(sizeof(vector float)-1)) == 0; } inline vector float LoadValue(const float &f) -- cgit v1.2.1