changed Q() function
This commit is contained in:
parent
f1cb3297e6
commit
b3a0c638cd
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.12 2004/09/01 12:18:39 pietroni
|
||||||
|
minor changes to comply gcc compiler (typename's )
|
||||||
|
|
||||||
Revision 1.11 2004/08/26 13:15:23 pietroni
|
Revision 1.11 2004/08/26 13:15:23 pietroni
|
||||||
added IsS() function
|
added IsS() function
|
||||||
|
|
||||||
|
@ -381,7 +384,7 @@ void ComputeNormal()
|
||||||
return _q;
|
return _q;
|
||||||
#else
|
#else
|
||||||
assert(0);
|
assert(0);
|
||||||
return 0;
|
return *(ScalarType*)(&_flags);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -390,7 +393,7 @@ const ScalarType & Q()const{
|
||||||
return _q;
|
return _q;
|
||||||
#else
|
#else
|
||||||
assert(0);
|
assert(0);
|
||||||
return 0;
|
return *(ScalarType*)(&_flags);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue