Bug 798033 - Remove 'using namespace' from CompileInfo-inl.h. r=evilpies

This commit is contained in:
Birunthan Mohanathas 2014-01-22 12:24:08 -05:00
parent 6596163a36
commit 97326c53c8

View File

@ -11,8 +11,8 @@
#include "jsscriptinlines.h"
using namespace js;
using namespace jit;
namespace js {
namespace jit {
inline RegExpObject *
CompileInfo::getRegExp(jsbytecode *pc) const
@ -26,4 +26,7 @@ CompileInfo::getFunction(jsbytecode *pc) const
return script_->getFunction(GET_UINT32_INDEX(pc));
}
} // namespace jit
} // namespace js
#endif /* jit_CompileInfo_inl_h */