Changeset 30192 in webkit for trunk/JavaScriptCore
- Timestamp:
- Feb 13, 2008, 4:10:00 AM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r30191 r30192 1 2008-02-13 Bernhard Rosenkraenzer <[email protected]> 2 3 Reviewed by Darin. 4 5 - http://bugs.webkit.org/show_bug.cgi?id=17339 6 JavaScriptCore does not build with gcc 4.3 7 8 * kjs/interpreter.cpp: Add include of <unistd.h>, since that's where 9 getpid() comes from. 10 1 11 2008-02-13 Oliver Hunt <[email protected]> 2 12 -
trunk/JavaScriptCore/kjs/interpreter.cpp
r29810 r30192 1 // -*- c-basic-offset: 2 -*-2 1 /* 3 * This file is part of the KDE libraries4 2 * Copyright (C) 1999-2001 Harri Porten ([email protected]) 5 3 * Copyright (C) 2001 Peter Kelly ([email protected]) … … 53 51 #include <stdio.h> 54 52 #include <wtf/Assertions.h> 53 54 #if !PLATFORM(WIN_OS) 55 #include <unistd.h> 56 #endif 55 57 56 58 namespace KJS { … … 147 149 bool Interpreter::shouldPrintExceptions() 148 150 { 149 return printExceptions;151 return printExceptions; 150 152 } 151 153 152 154 void Interpreter::setShouldPrintExceptions(bool print) 153 155 { 154 printExceptions = print;156 printExceptions = print; 155 157 } 156 158
Note:
See TracChangeset
for help on using the changeset viewer.