Bug 898274 (part 1) - Fix ordering of various #include statements. r=benjamin.

This commit is contained in:
Nicholas Nethercote
2013-08-13 15:34:12 -07:00
parent 99eedbde63
commit b1a9cc3871
23 changed files with 41 additions and 49 deletions

View File

@@ -6,16 +6,7 @@
/*
* JS date methods.
*/
#include "jsdate.h"
#include "js/Date.h"
#include "mozilla/FloatingPoint.h"
#include "mozilla/Util.h"
/*
*
* "For example, OS/360 devotes 26 bytes of the permanently
* resident date-turnover routine to the proper handling of
* December 31 on leap years (when it is Day 366). That
@@ -24,6 +15,11 @@
* Frederick Brooks, 'The Second-System Effect'.
*/
#include "jsdate.h"
#include "mozilla/FloatingPoint.h"
#include "mozilla/Util.h"
#include <ctype.h>
#include <math.h>
#include <string.h>
@@ -38,6 +34,7 @@
#include "jsutil.h"
#include "prmjtime.h"
#include "js/Date.h"
#include "vm/DateTime.h"
#include "vm/GlobalObject.h"
#include "vm/Interpreter.h"