Commit f7e76cde authored by kmackay's avatar kmackay Committed by Commit bot

Add some missing stdarg includes

One of our internal Chromecast builds was failing due to undefined
va_list in wasm-result.h. I also searched for other files where va_list
was used without including stdarg.h and added it as necessary (since
include-what-you-use is a thing).

BUG=chromium:706443

Review-Url: https://codereview.chromium.org/2780913002
Cr-Commit-Position: refs/heads/master@{#44588}
parent dd1e2e84
......@@ -4,6 +4,7 @@
#include "src/base/logging.h"
#include <cstdarg>
#include <cstdio>
#include <cstdlib>
......
......@@ -4,6 +4,8 @@
#include "src/heap/gc-tracer.h"
#include <cstdarg>
#include "src/counters.h"
#include "src/heap/heap-inl.h"
#include "src/isolate.h"
......
......@@ -5,6 +5,7 @@
#ifndef V8_WASM_DECODER_H_
#define V8_WASM_DECODER_H_
#include <cstdarg>
#include <memory>
#include "src/base/compiler-specific.h"
......
......@@ -5,6 +5,7 @@
#ifndef V8_WASM_RESULT_H_
#define V8_WASM_RESULT_H_
#include <cstdarg>
#include <memory>
#include "src/base/compiler-specific.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment