Skip to content
Snippets Groups Projects
Commit 89e4b7a7 authored by Benjamin Peterson's avatar Benjamin Peterson
Browse files

No bug - Remove extra comma which gcc dislikes. r=me

parent 56ba07a9
No related branches found
No related tags found
No related merge requests found
......@@ -224,7 +224,7 @@ enum ExecuteType {
EXECUTE_DIRECT_EVAL = 0x4, /* == StackFrame::EVAL */
EXECUTE_INDIRECT_EVAL = 0x5, /* == StackFrame::GLOBAL | EVAL */
EXECUTE_DEBUG = 0xc, /* == StackFrame::EVAL | DEBUGGER */
EXECUTE_DEBUG_GLOBAL = 0xd, /* == StackFrame::EVAL | DEBUGGER | GLOBAL */
EXECUTE_DEBUG_GLOBAL = 0xd /* == StackFrame::EVAL | DEBUGGER | GLOBAL */
};
/*****************************************************************************/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment