Merge pull request #565 from mre4ce/master
Disabled MSVC 2015 compile warnings.
This commit is contained in:
commit
0d628c179d
@ -32,6 +32,10 @@
|
|||||||
//ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
//ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
//POSSIBILITY OF SUCH DAMAGE.
|
//POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
#if _MSC_VER >= 1900
|
||||||
|
#pragma warning(disable : 4464) // relative include path contains '..'
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "../glslang/Include/intermediate.h"
|
#include "../glslang/Include/intermediate.h"
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
@ -46,6 +46,11 @@
|
|||||||
#ifndef __INTERMEDIATE_H
|
#ifndef __INTERMEDIATE_H
|
||||||
#define __INTERMEDIATE_H
|
#define __INTERMEDIATE_H
|
||||||
|
|
||||||
|
#if _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/Common.h"
|
||||||
#include "../Include/Types.h"
|
#include "../Include/Types.h"
|
||||||
#include "../Include/ConstantUnion.h"
|
#include "../Include/ConstantUnion.h"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user