Revert "use stdint.h with msvc"

This reverts commit 93529031de.
pull/3006/head
Alexander Medvednikov 2019-12-07 19:25:17 +03:00
parent 93529031de
commit b9a24e3b51
1 changed files with 1 additions and 5 deletions

View File

@ -246,11 +246,7 @@ pub fn (v mut V) compile() {
cgen.genln(js_headers)
} $else {
if !v.pref.is_bare {
$if msvc {
cgen.genln('#include <stdint.h>')
} $else {
cgen.genln('#include <inttypes.h>') // int64_t etc
}
cgen.genln('#include <inttypes.h>') // int64_t etc
} else {
cgen.genln('#include <stdint.h>')
}