apoch / epoch-language

Home of the Epoch Programming Language Project
Other
72 stars 3 forks source link

Files.cpp is missing required include #98

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Shared/Utility/Files.cpp:
You use std::istream_iterator which is defined in the <iterator> header, but do 
not include it.

Solution:
#include <iterator>

Original issue reported on code.google.com by ryoohki@gmail.com on 1 Feb 2012 at 8:20

GoogleCodeExporter commented 9 years ago
Similarily EpochCompiler/Compiler/ByteCodeEmitter.cpp is also missing a 
required inclusion of <iterator>.
std::back_inserter are defined in <iterator>

Original comment by ryoohki@gmail.com on 1 Feb 2012 at 8:21

GoogleCodeExporter commented 9 years ago
Fixed in trunk via patch from issue 100.

Original comment by don.ap...@gmail.com on 7 Feb 2012 at 5:16