changeset 21474:deeb9b4b2846

* textscan.h: Add required #includes for types used in header
author Mike Miller <mtmiller@octave.org>
date Fri, 18 Mar 2016 08:35:58 -0700
parents e9978387898a
children 4f3e63d75f33
files libinterp/corefcn/textscan.h
diffstat 1 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/textscan.h	Fri Mar 18 10:45:24 2016 -0400
+++ b/libinterp/corefcn/textscan.h	Fri Mar 18 08:35:58 2016 -0700
@@ -26,6 +26,15 @@
 #if ! defined (octave_textscan_h)
 #define octave_textscan_h 1
 
+#include "octave-config.h"
+
+#include <iosfwd>
+#include <list>
+#include <string>
+
+#include "Cell.h"
+#include "ov.h"
+
 // Delimited stream, optimised to read strings of characters separated
 // by single-character delimiters.
 //