Bug 856850 - Implement a PodOperations.h header that includes all the Pod* functions currently in jsutil.h. r=Ms2ger

This commit is contained in:
Jeff Walden
2013-04-01 22:43:19 -07:00
parent f6afd00b51
commit 82b3089871
51 changed files with 312 additions and 144 deletions

View File

@@ -5,9 +5,9 @@
* 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/. */
/*
* JavaScript iterators.
*/
/* JavaScript iterators. */
#include "mozilla/PodOperations.h"
#include "mozilla/Util.h"
#include "jstypes.h"
@@ -47,6 +47,10 @@ using namespace js;
using namespace js::gc;
using mozilla::ArrayLength;
#ifdef JS_MORE_DETERMINISTIC
using mozilla::PodCopy;
#endif
using mozilla::PodZero;
typedef Rooted<PropertyIteratorObject*> RootedPropertyIteratorObject;