Bug 1265741: Fix unified build for fuzzers; r=nbp

MozReview-Commit-ID: 7yBDjPKv77g

--HG--
extra : rebase_source : 484f098ff3d27ef734010a7b41755b5315e7e798
extra : amend_source : c6799f01860c7fa6fcf12efc28254e825aabcf5a
This commit is contained in:
Benjamin Bouvier 2016-04-19 16:12:20 +02:00
Родитель 2607cce8cc
Коммит 68070b0a47
5 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -32,6 +32,7 @@
#include "vm/Debugger-inl.h"
using namespace js;
using namespace js::jit;
using namespace js::wasm;
using mozilla::CheckedInt;

Просмотреть файл

@ -13,6 +13,7 @@
#include "gc/Tracer.h"
#include "jsobjinlines.h"
#include "jsscriptinlines.h"
using namespace js;
using namespace js::frontend;

Просмотреть файл

@ -940,7 +940,7 @@ IsSavedFrame(JSObject* obj)
if (!obj)
return false;
JSObject* unwrapped = CheckedUnwrap(obj);
JSObject* unwrapped = js::CheckedUnwrap(obj);
if (!unwrapped)
return false;

Просмотреть файл

@ -12,6 +12,8 @@
#include "gc/Barrier.h"
#include "gc/Zone.h"
#include "vm/Runtime-inl.h"
namespace js {
/* static */ void

Просмотреть файл

@ -10,6 +10,8 @@
#include "jscompartment.h"
#include "jsobjinlines.h"
#include "vm/NativeObject-inl.h"
using namespace js;
namespace JS {