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

--HG--
extra : rebase_source : 455451c1db82ddd4987a63837cda8da1677d8249
This commit is contained in:
Emanuel Hoogeveen 2013-07-23 17:34:18 -07:00
parent 20b74efd15
commit a71b894d36
4 changed files with 10 additions and 10 deletions

View File

@ -18,12 +18,6 @@
#include "jscntxt.h"
#include "jsobj.h"
#include "vm/DateTime.h"
#include "vm/GlobalObject.h"
#include "vm/Interpreter.h"
#include "vm/Stack.h"
#include "vm/StringBuffer.h"
#if ENABLE_INTL_API
#include "unicode/locid.h"
#include "unicode/numsys.h"
@ -36,6 +30,11 @@
#include "unicode/ustring.h"
#endif
#include "unicode/utypes.h"
#include "vm/DateTime.h"
#include "vm/GlobalObject.h"
#include "vm/Interpreter.h"
#include "vm/Stack.h"
#include "vm/StringBuffer.h"
#include "jsobjinlines.h"

View File

@ -8,6 +8,7 @@
#define builtin_Iterator_inl_h
#include "jsiter.h"
#include "vm/ObjectImpl-inl.h"
inline void

View File

@ -4,11 +4,11 @@
* 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 "builtin/ParallelArray.h"
#include "jsapi.h"
#include "jsobj.h"
#include "builtin/ParallelArray.h"
#include "vm/GlobalObject.h"
#include "vm/String.h"

View File

@ -15,8 +15,8 @@
#endif
#ifdef __APPLE__
#include "devtools/sharkctl.h"
#include "devtools/Instruments.h"
#include "devtools/sharkctl.h"
#endif
#include "jscntxtinlines.h"
@ -445,9 +445,9 @@ js_DumpCallgrind(const char *outfile)
* MOZ_PROFILE_PERF_FLAGS="-e 'foo bar'").
*/
#include <signal.h>
#include <sys/wait.h>
#include <unistd.h>
#include <signal.h>
static bool perfInitialized = false;
static pid_t perfPid = 0;