Changeset 211037 in webkit


Ignore:
Timestamp:
Jan 23, 2017 2:41:42 AM (7 years ago)
Author:
commit-queue@webkit.org
Message:

JavaScriptCore has a weak external symbol in it
https://bugs.webkit.org/show_bug.cgi?id=167282

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2017-01-23
Reviewed by Yusuke Suzuki.

  • debugger/Debugger.cpp:

(JSC::Debugger::ProfilingClient::~ProfilingClient):

  • debugger/Debugger.h:

Avoid possible weak external symbol.

Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r211024 r211037  
     12017-01-23  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        JavaScriptCore has a weak external symbol in it
     4        https://bugs.webkit.org/show_bug.cgi?id=167282
     5
     6        Reviewed by Yusuke Suzuki.
     7
     8        * debugger/Debugger.cpp:
     9        (JSC::Debugger::ProfilingClient::~ProfilingClient):
     10        * debugger/Debugger.h:
     11        Avoid possible weak external symbol.
     12
    1132017-01-21  Chris Dumez  <cdumez@apple.com>
    214
  • trunk/Source/JavaScriptCore/debugger/Debugger.cpp

    r210251 r211037  
    119119};
    120120
     121
     122Debugger::ProfilingClient::~ProfilingClient()
     123{
     124}
     125
    121126Debugger::Debugger(VM& vm)
    122127    : m_vm(vm)
  • trunk/Source/JavaScriptCore/debugger/Debugger.h

    r207267 r211037  
    139139    class ProfilingClient {
    140140    public:
    141         virtual ~ProfilingClient() { }
     141        virtual ~ProfilingClient();
    142142        virtual bool isAlreadyProfiling() const = 0;
    143143        virtual double willEvaluateScript() = 0;
Note: See TracChangeset for help on using the changeset viewer.