Bug 888088 (part 2) - Fix #include ordering in js/src/ctypes/. r=nnethercote.

--HG--
extra : rebase_source : 547fac0094c395f5593f7d416dc6019c4f970b9b
This commit is contained in:
Nicholas Nethercote 2013-07-23 17:34:18 -07:00
parent 825705300e
commit 451aba420e
2 changed files with 7 additions and 5 deletions

View File

@ -6,10 +6,10 @@
#ifndef ctypes_CTypes_h
#define ctypes_CTypes_h
#include "jscntxt.h"
#include "jsapi.h"
#include "prlink.h"
#include "ffi.h"
#include "jsapi.h"
#include "jscntxt.h"
#include "prlink.h"
#include "js/HashTable.h"

View File

@ -4,12 +4,14 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "ctypes/Library.h"
#include "jscntxt.h"
#include "jsstr.h"
#include "ctypes/Library.h"
#include "ctypes/CTypes.h"
#include "prlink.h"
#include "ctypes/CTypes.h"
namespace js {
namespace ctypes {