From 5ad33b463f977a286f69fd1c87c0db8cc8ac9e56 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 7 Jul 2015 19:33:54 +0100 Subject: Missing iostream includes for Arch. --- src/stl_binary_reader.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/stl_binary_reader.cc') diff --git a/src/stl_binary_reader.cc b/src/stl_binary_reader.cc index 59cb92b..d477684 100644 --- a/src/stl_binary_reader.cc +++ b/src/stl_binary_reader.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2014 Carl Hetherington + Copyright (C) 2014-2015 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -25,6 +25,7 @@ #include #include #include +#include using std::map; using std::vector; @@ -77,7 +78,7 @@ STLBinaryReader::STLBinaryReader (istream& in) editor_contact_details = get_string (341, 32); for (int i = 0; i < tti_blocks; ++i) { - + in.read ((char *) _buffer, 128); if (in.gcount() != 128) { throw STLError ("Could not read TTI block from binary STL file"); @@ -141,7 +142,7 @@ STLBinaryReader::STLBinaryReader (istream& in) sub.text = utf_to_utf (iso6937_to_utf16 (text.c_str())); _subs.push_back (sub); } - + /* XXX: justification */ } } -- cgit v1.2.3