• thakis's avatar
    Fix C++ violation. · 1f7a7b32
    thakis authored
    gcc rejects the following snippet, clang rejects it in -std=c++11 mode:
      namespace A { template<class T> class C {}; }
      namespace B { template class A::C<int>; }
    
    Indeed, the C++ standard says in 14.7.2p2 "An explicit instantiation shall
    appear in an enclosing namespace of its template", so cl.exe is incorrect to
    allow this.
    
    Just move the instantiation out of the v8 namespace to fix.  No intended
    behavior change.  Fixes building with clang-cl on Windows.
    
    BUG=chromium:475643
    LOG=N
    TBR=svenpanne@chromium.org
    
    Review URL: https://codereview.chromium.org/1073903002
    
    Cr-Commit-Position: refs/heads/master@{#27721}
    1f7a7b32
Name
Last commit
Last update
..
libplatform Loading commit data...
OWNERS Loading commit data...
v8-debug.h Loading commit data...
v8-platform.h Loading commit data...
v8-profiler.h Loading commit data...
v8-testing.h Loading commit data...
v8-util.h Loading commit data...
v8-version.h Loading commit data...
v8.h Loading commit data...
v8config.h Loading commit data...