msvc warning 4996 disable pragma (#73)
This commit is contained in:
parent
4e7b082ccc
commit
034b23ed3e
1 changed files with 4 additions and 0 deletions
4
toml.h
4
toml.h
|
@ -25,6 +25,10 @@
|
|||
#ifndef TOML_H
|
||||
#define TOML_H
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable: 4996)
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue