Skip to content

Commit

Permalink
Fix FreeBSD build.
Browse files Browse the repository at this point in the history
Fix the following build error:

    ../deps/v8/src/compiler/graph-visualizer.h:23:1:
    error: 'FILE' does not name a type

See nodejs/node#1637 for background.

BUG=v8:4079
LOG=N

Review URL: https://codereview.chromium.org/1128053002

Cr-Commit-Position: refs/heads/master@{#28254}
  • Loading branch information
ben authored and Commit bot committed May 6, 2015
1 parent 97bee8e commit 8ceb903
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/compiler/graph-visualizer.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#ifndef V8_COMPILER_GRAPH_VISUALIZER_H_
#define V8_COMPILER_GRAPH_VISUALIZER_H_

#include <stdio.h>
#include <iosfwd>

namespace v8 {
Expand Down

0 comments on commit 8ceb903

Please sign in to comment.