changeset 23170:b3f2645803fe

Add headers needed on MacOS to avoid "implicit instantiation of undefined template" for changeset 334119c390b3. * libinterp/parse-tree/bp-table.cc: add <stream> & <iostream> headers. * libinterp/parse-tree/pt-jit.cc: add <string>, <stream> & <iostream> iheaders.
author Mike Miller <mtmiller@octave.org>
date Sat, 04 Feb 2017 14:34:15 -0500
parents 6f2164303aac
children e9d7932373ad
files libinterp/parse-tree/bp-table.cc libinterp/parse-tree/pt-jit.cc
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/parse-tree/bp-table.cc	Wed Feb 08 19:16:50 2017 -0500
+++ b/libinterp/parse-tree/bp-table.cc	Sat Feb 04 14:34:15 2017 -0500
@@ -31,6 +31,8 @@
 #include <map>
 #include <set>
 #include <string>
+#include <sstream>
+#include <iostream>
 
 #include "file-ops.h"
 #include "file-stat.h"
--- a/libinterp/parse-tree/pt-jit.cc	Wed Feb 08 19:16:50 2017 -0500
+++ b/libinterp/parse-tree/pt-jit.cc	Sat Feb 04 14:34:15 2017 -0500
@@ -29,6 +29,10 @@
 #  include "config.h"
 #endif
 
+#include <string>
+#include <sstream>
+#include <iostream>
+
 #include "bp-table.h"
 #include "defun.h"
 #include "errwarn.h"