aboutsummaryrefslogtreecommitdiff
path: root/examples/BrainF/BrainF.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/BrainF/BrainF.h')
-rw-r--r--examples/BrainF/BrainF.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/examples/BrainF/BrainF.h b/examples/BrainF/BrainF.h
index 15e9e0847141..587be141b98f 100644
--- a/examples/BrainF/BrainF.h
+++ b/examples/BrainF/BrainF.h
@@ -1,16 +1,16 @@
-//===-- BrainF.h - BrainF compiler class ----------------------*- C++ -*-===//
+//===-- BrainF.h - BrainF compiler class ------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
-//===--------------------------------------------------------------------===//
+//===----------------------------------------------------------------------===//
//
// This class stores the data for the BrainF compiler so it doesn't have
// to pass all of it around. The main method is parse.
//
-//===--------------------------------------------------------------------===//
+//===----------------------------------------------------------------------===//
#ifndef BRAINF_H
#define BRAINF_H
@@ -18,6 +18,7 @@
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/Module.h"
+#include <istream>
using namespace llvm;
@@ -91,4 +92,4 @@ class BrainF {
Value *curhead;
};
-#endif
+#endif // BRAINF_H