jnz / q3vm

Q3VM - Single file (vm.c) bytecode virtual machine/interpreter for C-language input
GNU General Public License v2.0
840 stars 59 forks source link

Fixes for Visual Studio #3

Closed sbarisic closed 6 years ago

sbarisic commented 6 years ago

I updated and modified the visual studio solution file to build q3vm now. Had to include a VS specific vs_patches.h which undefines errno as it is a macro and it's used as a member of vm_t struct.

Another small issue seems to be that vm.h does not have include guards.

codecov[bot] commented 6 years ago

Codecov Report

Merging #3 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master       #3   +/-   ##
=======================================
  Coverage   91.88%   91.88%           
=======================================
  Files           2        2           
  Lines         505      505           
=======================================
  Hits          464      464           
  Misses         41       41

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 4f6932a...1d0c3e2. Read the comment docs.

jnz commented 6 years ago

Thank you!