[jumbo] undef FORWARD_DECLARE after creating it in source files

Followup after https://chromium-review.googlesource.com/c/v8/v8/+/652427
which triggered FORWARD_DECLARE macro redefinition warnings/errors.  Let's
make sure to undef this macro at the end of source files that create it.

Bug: chromium:746958
Change-Id: Ie70743c836db45eb51f412a0d6359f0f667319d3
Reviewed-on: https://chromium-review.googlesource.com/654657
Commit-Queue: Mostyn Bramley-Moore <mostynb@opera.com>
Reviewed-by: Clemens Hammacher <clemensh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#47866}
This commit is contained in:
Mostyn Bramley-Moore 2017-09-07 08:42:39 +02:00 committed by Commit Bot
parent ad9640e300
commit 7d890c1135
2 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,7 @@ namespace internal {
#define FORWARD_DECLARE(Name) \
Object* Builtin_##Name(int argc, Object** args, Isolate* isolate);
BUILTIN_LIST_C(FORWARD_DECLARE)
#undef FORWARD_DECLARE
namespace {

View File

@ -17,6 +17,7 @@ namespace internal {
#define FORWARD_DECLARE(Name) \
Object* Builtin_##Name(int argc, Object** args, Isolate* isolate);
BUILTIN_LIST_C(FORWARD_DECLARE)
#undef FORWARD_DECLARE
namespace {
void PostBuildProfileAndTracing(Isolate* isolate, Code* code,