Changeset 588

Show
Ignore:
Timestamp:
07/03/08 12:57:47 (5 months ago)
Author:
scott
Message:

roll back my changes here too

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/maya2q3/Makefile

    r584 r588  
    55VERS=1.0 
    66DEBUG_FLAGS= 
    7  
    8 CC = gcc-4.1 
    9 C++ = g++-4.1 
    107 
    118default: linux/bin/maya2q3.$(EXT) 
  • trunk/maya2q3/NVMeshMender.h

    r584 r588  
    130130                        }; 
    131131            */ 
    132                         Vertex():pos(0.0f ,0.0f ,0.0f ) 
     132                        Vertex::Vertex():pos(0.0f ,0.0f ,0.0f ) 
    133133                                                                                ,normal(0.0f ,0.0f ,0.0f ) 
    134134                                                                                ,s(0.0f ) 
  • trunk/maya2q3/common.h

    r584 r588  
    176176#endif 
    177177 
    178 #ifdef __GNUC__ 
    179 #define ALIGN(x) __attribute__((aligned(x))) 
    180 #else 
    181 #define ALIGN(x) __declspec(align(x)) 
    182 #endif 
    183  
    184178#include <boost/smart_ptr.hpp> 
    185179 
  • trunk/maya2q3/q3util.h

    r584 r588  
    144144 
    145145#endif 
    146  
  • trunk/maya2q3/util-maya2q3.h

    r584 r588  
    199199        } 
    200200 
    201         virtual const char* what() const throw() 
     201        virtual const char* what() const 
    202202        { 
    203203                return statcode.errorString().asChar(); 
     
    244244 
    245245#endif 
    246