msvc warning 4996 disable pragma (#73)

This commit is contained in:
Vladislav Laetansky 2022-04-17 23:09:01 +03:00 committed by GitHub
parent 4e7b082ccc
commit 034b23ed3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

4
toml.h
View File

@ -25,6 +25,10 @@
#ifndef TOML_H
#define TOML_H
#ifdef _MSC_VER
#pragma warning(disable: 4996)
#endif
#include <stdint.h>
#include <stdio.h>