Restoring original header files order and using MSVC project setting to disable non-secure CRT warnings.

This commit is contained in:
Marco Lizza
2015-01-23 10:05:10 +01:00
parent c88e61d018
commit 1464280933
10 changed files with 33 additions and 44 deletions
+8 -7
View File
@@ -1,16 +1,17 @@
#include "wren_common.h"
#include "wren_compiler.h"
#include "wren_vm.h"
#if WREN_DEBUG_DUMP_COMPILED_CODE
#include "wren_debug.h"
#endif
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "wren_common.h"
#include "wren_compiler.h"
#include "wren_vm.h"
#if WREN_DEBUG_DUMP_COMPILED_CODE
#include "wren_debug.h"
#endif
// This is written in bottom-up order, so the tokenization comes first, then
// parsing/code generation. This minimizes the number of explicit forward
// declarations needed.