Bug 634839 (part 1) - Remove unnecessary headers (as found by include-what-you-use) from js/src/jsfoo.cpp files. r=luke.

This commit is contained in:
Nicholas Nethercote
2013-04-23 23:44:36 -07:00
parent 92015087a4
commit 5da6cef3c7
54 changed files with 128 additions and 340 deletions

View File

@@ -8,6 +8,8 @@
* JS date methods.
*/
#include "jsdate.h"
#include "mozilla/FloatingPoint.h"
#include "mozilla/Util.h"
@@ -23,7 +25,6 @@
#include <ctype.h>
#include <locale.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include "jstypes.h"
@@ -33,12 +34,10 @@
#include "jsapi.h"
#include "jsversion.h"
#include "jscntxt.h"
#include "jsdate.h"
#include "jsinterp.h"
#include "jsnum.h"
#include "jsobj.h"
#include "jsstr.h"
#include "jslibmath.h"
#include "vm/DateTime.h"
#include "vm/GlobalObject.h"
@@ -46,11 +45,8 @@
#include "vm/String.h"
#include "vm/StringBuffer.h"
#include "jsinferinlines.h"
#include "jsobjinlines.h"
#include "vm/Stack-inl.h"
using namespace js;
using namespace js::types;