Include :

- aggiornamenti vari.
This commit is contained in:
Dario Sassi
2015-02-15 17:36:29 +00:00
parent 04a9005246
commit 83f5ea8a5c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ class Triangle3d
if ( dTwoArea < EPS_SMALL * EPS_SMALL)
return INFINITO ;
else
return ( std::max( dSqDistA, std::max( dSqDistB, dSqDistC)) / dTwoArea) ;
return ( (std::max)( dSqDistA, (std::max)( dSqDistB, dSqDistC)) / dTwoArea) ;
}
private :
+1 -1
View File
@@ -275,7 +275,7 @@ class wcharBuffer
wchar_t* data( void)
{ return m_wBuffer.data() ; }
void terminate( size_t nLen)
{ nLen = std::min( nLen, m_wBuffer.size() - 1) ;
{ nLen = (std::min)( nLen, m_wBuffer.size() - 1) ;
m_wBuffer[nLen] = '\0' ; }
private :