Mod/Mesh: suppress bunch of warnings on C++11 usage
Warnings was like: src/Mod/Mesh/App/WildMagic4/Wm4Vector4.cpp|21 col 49| warning: first declaration of static data member specialization of 'ZERO' outside namespace 'Wm4' is a C++11 extension [-Wc++11-extensions]
This commit is contained in:
committed by
wmayer
parent
5b469a4078
commit
8fdf8367ad
@@ -16,7 +16,8 @@
|
||||
|
||||
#include "Wm4FoundationPCH.h"
|
||||
#include "Wm4Matrix4.h"
|
||||
using namespace Wm4;
|
||||
|
||||
namespace Wm4 {
|
||||
|
||||
template<> const Matrix4<float> Matrix4<float>::ZERO(
|
||||
0.0f,0.0f,0.0f,0.0f,
|
||||
@@ -39,3 +40,4 @@ template<> const Matrix4<double> Matrix4<double>::IDENTITY(
|
||||
0.0,1.0,0.0,0.0,
|
||||
0.0,0.0,1.0,0.0,
|
||||
0.0,0.0,0.0,1.0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user