Remove various warning suppression pragmas
This requires a small change to to use strncpy() instead of strcpy(), as well as change of include paths to not use "..". The other warnings are just not being hit anymore.
This commit is contained in:
parent
a1138bacff
commit
e854c8de10
5 changed files with 1476 additions and 1514 deletions
|
|
@ -48,14 +48,9 @@
|
|||
#ifndef __INTERMEDIATE_H
|
||||
#define __INTERMEDIATE_H
|
||||
|
||||
#if defined(_MSC_VER) && _MSC_VER >= 1900
|
||||
#pragma warning(disable : 4464) // relative include path contains '..'
|
||||
#pragma warning(disable : 5026) // 'glslang::TIntermUnary': move constructor was implicitly defined as deleted
|
||||
#endif
|
||||
|
||||
#include "../Include/Common.h"
|
||||
#include "../Include/Types.h"
|
||||
#include "../Include/ConstantUnion.h"
|
||||
#include "Common.h"
|
||||
#include "Types.h"
|
||||
#include "ConstantUnion.h"
|
||||
|
||||
namespace glslang {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue